RLE-wiki/functions/tsconfig.json

22 lines
423 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"jsx": "preserve",
"lib": [
"ESNext"
],
"module": "ESNext",
"moduleResolution": "Bundler",
"types": [
"@cloudflare/workers-types"
],
"strict": true,
"strictNullChecks": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true
}
}