mirror of
https://github.com/186526/handlers.js
synced 2024-10-13 00:29:43 +00:00
46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"lib": ["ESNext"],
|
|
"types": [
|
|
"@cloudflare/workers-types",
|
|
"@types/node",
|
|
"@types/jest",
|
|
"bun-types"
|
|
],
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"moduleResolution": "node",
|
|
"removeComments": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"baseUrl": ".",
|
|
"plugins": [
|
|
{
|
|
"transform": "@zerollup/ts-transform-paths"
|
|
}
|
|
],
|
|
"declaration": true
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": ["index.ts", "src/**/*.ts", "demo/**/*.ts", "types/*.d.ts"],
|
|
"tsc-alias": {
|
|
"resolveFullPaths": true,
|
|
"verbose": true
|
|
}
|
|
// "esm": true
|
|
}
|