canvas-website/tsconfig.worker.json

18 lines
394 B
JSON

{
"compilerOptions": {
"composite": true,
"skipLibCheck": true,
"lib": ["ES2022"],
"module": "ES2022",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"types": ["@cloudflare/workers-types"],
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"target": "ES2022"
},
"include": ["worker/*.ts"]
}