web-01-api/tsconfig.json
2026-06-22 10:26:29 +08:00

28 lines
675 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"sourceMap": true,
"outDir": "./dist",
"rootDir": "./src",
"skipLibCheck": true,
"strictNullChecks": true,
"noImplicitAny": true,
"strict": true,
"strictPropertyInitialization": false,
"noEmitOnError": false,
"esModuleInterop": true,
"resolveJsonModule": true,
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist", "test"]
}