2022-03-14 14:46:21 +08:00
|
|
|
{
|
|
|
|
"compileOnSave": true,
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2018",
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"inlineSourceMap":true,
|
|
|
|
"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,
|
|
|
|
"declaration": true,
|
2023-05-23 09:34:37 +08:00
|
|
|
"noImplicitAny": false,
|
2022-03-14 14:46:21 +08:00
|
|
|
"typeRoots": [ "./typings", "./node_modules/@types"],
|
2024-03-20 11:40:56 +08:00
|
|
|
"outDir": "dist",
|
|
|
|
"rootDir": "src"
|
2022-03-14 14:46:21 +08:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"dist",
|
|
|
|
"node_modules",
|
|
|
|
"test"
|
|
|
|
]
|
|
|
|
}
|