qinglong/back/tsconfig.json
2025-05-07 09:30:00 +08:00

28 lines
656 B
JSON

{
"compilerOptions": {
"target": "es2017",
"lib": ["ESNext"],
"typeRoots": [
"./types",
"../node_modules/celebrate/lib",
"../node_modules/@types"
],
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"moduleResolution": "node",
"module": "commonjs",
"pretty": true,
"sourceMap": true,
"outDir": "../static/build",
"allowJs": true,
"noEmit": false,
"esModuleInterop": true
},
"include": ["./**/*"],
"exclude": ["node_modules"]
}