cool-admin-midway/tsconfig.json

30 lines
631 B
JSON
Raw Normal View History

2022-03-14 14:46:21 +08:00
{
"compileOnSave": true,
"compilerOptions": {
"target": "es2018",
"module": "commonjs",
"moduleResolution": "node",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
2024-05-30 17:43:45 +08:00
"inlineSourceMap": true,
2022-03-14 14:46:21 +08:00
"noImplicitThis": true,
2024-01-25 17:50:25 +08:00
"noUnusedLocals": false,
2022-03-14 14:46:21 +08:00
"stripInternal": true,
"skipLibCheck": true,
2024-01-25 17:50:25 +08:00
"resolveJsonModule": true,
2022-03-14 14:46:21 +08:00
"pretty": true,
2024-05-28 15:22:15 +08:00
"declaration": false,
2023-05-23 09:34:37 +08:00
"noImplicitAny": false,
2024-05-28 15:22:15 +08:00
"typeRoots": [
"typings",
"./node_modules/@types"
],
"outDir": "dist",
"rootDir": "src"
2022-03-14 14:46:21 +08:00
},
"exclude": [
"dist",
"node_modules",
"test"
]
2024-05-28 15:22:15 +08:00
}