web-backset.cn/apps/server/tsconfig.json

26 lines
579 B
JSON
Raw Normal View History

2023-02-10 17:08:08 +08:00
{
2023-02-16 17:58:27 +08:00
"compileOnSave": true,
2023-02-10 17:08:08 +08:00
"compilerOptions": {
2023-02-16 17:58:27 +08:00
"target": "es2018",
2023-02-10 17:08:08 +08:00
"module": "commonjs",
2023-02-16 17:58:27 +08:00
"moduleResolution": "node",
2023-02-10 17:08:08 +08:00
"experimentalDecorators": true,
2023-02-16 17:58:27 +08:00
"emitDecoratorMetadata": true,
"inlineSourceMap":true,
"noImplicitThis": true,
"noUnusedLocals": true,
"stripInternal": true,
2023-02-10 17:08:08 +08:00
"skipLibCheck": true,
2023-02-16 17:58:27 +08:00
"pretty": true,
"declaration": true,
"forceConsistentCasingInFileNames": true,
"typeRoots": [ "./typings", "./node_modules/@types"],
"outDir": "dist"
},
"exclude": [
"dist",
"node_modules",
"test"
]
2023-02-10 17:08:08 +08:00
}