Details: C3 = create-cloudflare@2.49.0 project name = bluesky-alt-text-worker package manager = npm@10.2.3 wrangler = wrangler@4.19.1 git = 2.48.1
30 lines
725 B
JSON
30 lines
725 B
JSON
{
|
|
"compilerOptions": {
|
|
/* Base Options: */
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"target": "es2022",
|
|
"verbatimModuleSyntax": false,
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"moduleDetection": "force",
|
|
/* Strictness */
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": false,
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
/* If NOT transpiling with TypeScript: */
|
|
"moduleResolution": "Bundler",
|
|
"module": "es2022",
|
|
"noEmit": true,
|
|
"lib": ["es2022"],
|
|
"types": [
|
|
"./worker-configuration.d.ts",
|
|
"@types/node",
|
|
"@types/service-worker-mock"
|
|
]
|
|
},
|
|
"exclude": ["node_modules", "dist", "tests"],
|
|
"include": ["src", "worker-configuration.d.ts"]
|
|
}
|