Files
core/tsconfig.json
2022-03-27 18:25:23 +08:00

41 lines
745 B
JSON

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