21 lines
451 B
JSON
21 lines
451 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"allowJs": true,
|
||
|
"module": "CommonJS",
|
||
|
"target": "es2020",
|
||
|
"moduleResolution": "node",
|
||
|
"esModuleInterop": true,
|
||
|
"downlevelIteration": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"outDir": "out"
|
||
|
},
|
||
|
"lib": [
|
||
|
"es2020"
|
||
|
],
|
||
|
"include": [
|
||
|
"src/*",
|
||
|
"src/**/*"
|
||
|
]
|
||
|
}
|