2018-09-02 23:26:15 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2018-09-13 10:51:20 +03:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"client/*": [
|
|
|
|
"client/*"
|
|
|
|
]
|
|
|
|
},
|
2018-09-02 23:26:15 +03:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"module": "esnext",
|
2018-09-13 10:51:20 +03:00
|
|
|
"target": "es5",
|
|
|
|
"strict": true,
|
2018-09-02 23:26:15 +03:00
|
|
|
"sourceMap": true,
|
2018-09-13 10:51:20 +03:00
|
|
|
"declaration": true,
|
2018-09-02 23:26:15 +03:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"skipDefaultLibCheck": true,
|
|
|
|
"lib": [
|
|
|
|
"dom",
|
2018-09-13 10:51:20 +03:00
|
|
|
"es2017"
|
2018-09-02 23:26:15 +03:00
|
|
|
]
|
|
|
|
}
|
2018-09-13 10:51:20 +03:00
|
|
|
}
|