35 lines
646 B
JSON
35 lines
646 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "ES2019",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"baseUrl": ".",
|
|
"noImplicitAny": false,
|
|
"incremental": true,
|
|
"resolveJsonModule": true,
|
|
"lib": [
|
|
"ES2021",
|
|
"ES2020",
|
|
],
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"~": [
|
|
"./src"
|
|
],
|
|
"~/*": [
|
|
"./src/*"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"tmp"
|
|
]
|
|
} |