2021-06-01 15:29:39 +08:00
|
|
|
{
|
|
|
|
"compileOnSave": true,
|
|
|
|
"compilerOptions": {
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"lib": [
|
|
|
|
"es2015",
|
|
|
|
"dom",
|
|
|
|
"es6"
|
|
|
|
],
|
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"stripInternal": true,
|
|
|
|
"pretty": false,
|
|
|
|
"declaration": true,
|
|
|
|
"typeRoots": [
|
|
|
|
"./typings",
|
|
|
|
"./node_modules/@types"
|
|
|
|
],
|
|
|
|
"rootDir": "src",
|
2021-12-23 14:07:27 +08:00
|
|
|
"outDir": "dist"
|
2021-06-01 15:29:39 +08:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"**/node_modules/**",
|
|
|
|
"dist",
|
|
|
|
"test"
|
|
|
|
],
|
|
|
|
"include": [
|
|
|
|
"./src/**/*.ts",
|
|
|
|
"src/**/*.json"
|
|
|
|
]
|
|
|
|
}
|