mirror of
https://github.com/cool-team-official/cool-admin-midway.git
synced 2024-11-01 14:10:29 +08:00
30 lines
631 B
JSON
30 lines
631 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"inlineSourceMap": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": false,
|
|
"stripInternal": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"pretty": true,
|
|
"declaration": false,
|
|
"noImplicitAny": false,
|
|
"typeRoots": [
|
|
"typings",
|
|
"./node_modules/@types"
|
|
],
|
|
"outDir": "dist",
|
|
"rootDir": "src"
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules",
|
|
"test"
|
|
]
|
|
} |