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

29 lines
625 B
JSON
Raw Permalink 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,
2023-02-21 17:58:09 +08:00
"esModuleInterop": true,
"inlineSourceMap": true,
2023-02-16 17:58:27 +08:00
"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,
2023-02-21 17:58:09 +08:00
"typeRoots": [
"./typings",
"./node_modules/@types"
],
2023-02-16 17:58:27 +08:00
"outDir": "dist"
},
"exclude": [
"dist",
"node_modules",
"test"
]
2023-02-21 17:58:09 +08:00
}