2018-07-01 03:35:51 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-10-31 14:50:54 +02:00
|
|
|
"moduleResolution": "node",
|
2018-07-01 03:35:51 +03:00
|
|
|
"module": "commonjs",
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"experimentalDecorators": true,
|
2018-10-26 06:41:20 +03:00
|
|
|
"emitDecoratorMetadata": true,
|
2020-01-20 23:54:52 +02:00
|
|
|
"target": "es2020",
|
2021-09-11 19:06:51 +03:00
|
|
|
"lib": ["esnext"],
|
2019-11-07 22:53:11 +02:00
|
|
|
"baseUrl": ".",
|
2018-07-12 02:58:34 +03:00
|
|
|
"resolveJsonModule": true,
|
2018-12-14 06:47:58 +02:00
|
|
|
"esModuleInterop": true,
|
2019-11-02 22:11:26 +02:00
|
|
|
"outDir": "./dist",
|
|
|
|
"paths": {
|
2021-09-11 19:06:51 +03:00
|
|
|
"@shared/*": ["../shared/src/*"]
|
2019-12-08 02:05:35 +02:00
|
|
|
},
|
2020-07-22 21:23:27 +03:00
|
|
|
"sourceMap": true,
|
|
|
|
"alwaysStrict": true,
|
2020-11-09 20:03:57 +02:00
|
|
|
"noImplicitThis": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
2021-10-31 14:51:13 +02:00
|
|
|
"strictPropertyInitialization": false,
|
2021-11-02 20:54:05 +02:00
|
|
|
"useUnknownInCatchVariables": false,
|
|
|
|
"allowJs": true
|
2018-12-14 06:47:58 +02:00
|
|
|
},
|
2022-06-26 15:02:34 +03:00
|
|
|
"include": ["src/**/*.ts"]
|
2018-07-01 03:35:51 +03:00
|
|
|
}
|