39 lines
863 B
JSON
39 lines
863 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"module": "commonjs",
|
||
|
|
"lib": [
|
||
|
|
"ES2020"
|
||
|
|
],
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": "./src",
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"declaration": true,
|
||
|
|
"declarationMap": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"emitDecoratorMetadata": true,
|
||
|
|
"types": [
|
||
|
|
"node"
|
||
|
|
],
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@/*": [
|
||
|
|
"src/*"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"src/**/*"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"dist",
|
||
|
|
"**/*.test.ts"
|
||
|
|
]
|
||
|
|
}
|