bsky-alt-text-worker/tsconfig.json
Index bbc7b5bf9b Initial commit (by create-cloudflare CLI)
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
2025-06-06 22:17:32 -05:00

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"]
}