Files
core/patch/tsconfig.json
2021-09-06 14:22:51 +08:00

34 lines
633 B
JSON

{
"compilerOptions": {
"module": "CommonJS",
"declaration": false,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": false,
"outDir": "./dist",
"baseUrl": ".",
"noImplicitAny": false,
"incremental": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"paths": {
"~": [
"../src"
],
"~/*": [
"../src/*"
]
},
},
"include": [
"*.ts",
"../src"
],
"exclude": [
"dist"
]
}