RLE-wiki/functions/tsconfig.json

22 lines
423 B
JSON
Raw Permalink Normal View History

2024-03-04 19:36:56 +08:00
{
"compilerOptions": {
"target": "ESNext",
"jsx": "preserve",
2024-03-04 19:36:56 +08:00
"lib": [
"ESNext"
],
"module": "ESNext",
"moduleResolution": "Bundler",
2024-03-04 19:36:56 +08:00
"types": [
"@cloudflare/workers-types"
],
"strict": true,
2024-03-04 19:36:56 +08:00
"strictNullChecks": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true
}
2024-03-04 19:36:56 +08:00
}