31 lines
666 B
JSON
31 lines
666 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"incremental": true,
|
||
|
|
"target": "es2020",
|
||
|
|
"lib": [
|
||
|
|
"es2020"
|
||
|
|
],
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"module": "commonjs",
|
||
|
|
"declaration": true,
|
||
|
|
"inlineSourceMap": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"noUnusedLocals": false,
|
||
|
|
"noUnusedParameters": false,
|
||
|
|
"noImplicitReturns": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"traceResolution": false,
|
||
|
|
"listEmittedFiles": false,
|
||
|
|
"listFiles": false,
|
||
|
|
"pretty": true,
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"emitDecoratorMetadata": true,
|
||
|
|
"outDir": "dist",
|
||
|
|
"types": [
|
||
|
|
"node",
|
||
|
|
"jest"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|