2019-06-22 18:52:24 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"moduleResolution": "node",
|
2019-07-22 00:27:18 +03:00
|
|
|
"module": "esnext",
|
2019-10-10 21:58:00 +03:00
|
|
|
"target": "esnext",
|
2019-07-22 00:27:18 +03:00
|
|
|
"sourceMap": true,
|
2019-06-22 18:52:24 +03:00
|
|
|
"noImplicitAny": false,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2019-10-10 21:58:00 +03:00
|
|
|
"strict": false,
|
2019-06-22 18:52:24 +03:00
|
|
|
"lib": [
|
|
|
|
"esnext",
|
|
|
|
"dom"
|
|
|
|
],
|
2019-10-10 21:58:00 +03:00
|
|
|
"baseUrl": ".",
|
2019-06-22 18:52:24 +03:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"esModuleInterop": true,
|
2019-10-10 21:58:00 +03:00
|
|
|
"allowJs": true
|
|
|
|
}
|
2019-06-22 18:52:24 +03:00
|
|
|
}
|