Files
core/test/tsconfig.json
2021-11-10 14:02:29 +08:00

33 lines
645 B
JSON

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