2022-05-22 22:02:35 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"module": "CommonJS",
|
|
|
|
"target": "es2020",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"resolveJsonModule": true,
|
2022-05-23 22:32:14 +01:00
|
|
|
"outDir": "out"
|
2022-05-22 22:02:35 +01:00
|
|
|
},
|
|
|
|
"lib": [
|
|
|
|
"es2020"
|
|
|
|
],
|
|
|
|
"include": [
|
|
|
|
"src/*",
|
|
|
|
"src/**/*"
|
|
|
|
]
|
|
|
|
}
|