2022-05-17 15:06:52 +03:00
|
|
|
{
|
|
|
|
"allowJs": true,
|
|
|
|
"declaration": true,
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2024-01-18 10:25:09 +01:00
|
|
|
"target": "es2020",
|
2022-05-17 15:06:52 +03:00
|
|
|
"outDir": "out",
|
|
|
|
"rootDir": "src",
|
|
|
|
"sourceMap": true
|
|
|
|
},
|
|
|
|
"types": ["node"],
|
2024-01-18 10:25:09 +01:00
|
|
|
"include": [],
|
2022-05-17 15:06:52 +03:00
|
|
|
"exclude": ["node_modules", ".vscode-test"],
|
|
|
|
"references": [
|
|
|
|
{
|
|
|
|
"path": "./client"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./server"
|
2024-01-16 07:36:45 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./integration-tests"
|
2022-05-17 15:06:52 +03:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"extends": "@tsconfig/node16-strictest/tsconfig.json"
|
|
|
|
}
|