system_info_server/tsconfig.json

25 lines
607 B
JSON
Raw Normal View History

2025-06-20 15:54:04 +08:00
{
"compilerOptions": {
"module": "commonjs",
"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,
2025-06-25 10:52:26 +08:00
"noFallthroughCasesInSwitch": false,
"paths": {
"cron": ["node_modules/cron/dist"]
}
2025-06-20 15:54:04 +08:00
}
}