Files
bidding_watcher/tsconfig.json

26 lines
664 B
JSON
Raw Permalink Normal View History

2026-01-09 23:18:52 +08:00
{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
2026-01-09 23:18:52 +08:00
"esModuleInterop": true,
"isolatedModules": true,
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2023",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": false,
"strictBindCallApply": false,
"noFallthroughCasesInSwitch": false
},
"include": ["src", "test"]
}