training_data/apps/server/tsconfig.json

18 lines
408 B
JSON
Raw Normal View History

2024-07-11 11:00:51 +08:00
{
2024-12-30 08:26:40 +08:00
"extends": "../../tsconfig.base.json",
2024-07-11 11:00:51 +08:00
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
2024-12-30 08:26:40 +08:00
"target": "ES2020",
2024-07-11 11:00:51 +08:00
"sourceMap": true,
"outDir": "./dist",
2024-12-30 08:26:40 +08:00
"strict": true,
"esModuleInterop": true,
2025-03-02 17:01:01 +08:00
"incremental": true
}
}