26 lines
462 B
JSON
26 lines
462 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"lib": [
|
||
|
"es6",
|
||
|
"es2020"
|
||
|
],
|
||
|
"target": "es2017",
|
||
|
"module": "commonjs",
|
||
|
"moduleResolution": "node",
|
||
|
"outDir": "./build",
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"sourceMap": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"esModuleInterop": true,
|
||
|
"resolveJsonModule": true
|
||
|
},
|
||
|
"include": [
|
||
|
"src"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"test"
|
||
|
]
|
||
|
}
|