2022-05-10 11:52:07 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-06-29 13:02:30 +03:00
|
|
|
"lib": ["es6", "es2020"],
|
2022-05-18 11:18:10 +03:00
|
|
|
"target": "es2020",
|
2022-05-10 11:52:07 +03:00
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"outDir": "./build",
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true
|
|
|
|
},
|
2022-06-29 13:02:30 +03:00
|
|
|
"include": ["src/**/*"]
|
2022-05-10 11:52:07 +03:00
|
|
|
}
|