tsconfig.json•900 B
{
"compilerOptions": {
"target": "ES2021",
"module": "ESNext",
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"baseUrl": ".",
"outDir": "./dist",
"declaration": true,
"sourceMap": true,
"lib": [
"ES2021",
"WebWorker"
],
"types": [
"@cloudflare/workers-types",
"node"
]
},
"include": [
"src/**/*",
"types/**/*"
],
"exclude": [
"node_modules",
"dist"
]
}