2017-06-10 01:29:16 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es2016",
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"removeComments": false,
|
2018-05-20 17:12:05 +03:00
|
|
|
"emitDeclarationOnly": false,
|
2017-06-10 01:29:16 +03:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"declaration": true,
|
|
|
|
"skipLibCheck": true,
|
2018-08-26 14:15:00 +03:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2017-06-10 01:29:16 +03:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
2017-10-20 22:44:34 +03:00
|
|
|
"es5",
|
|
|
|
"es6",
|
|
|
|
"es7",
|
2018-10-09 09:34:23 +03:00
|
|
|
"es2015",
|
|
|
|
"es2017"
|
2017-06-10 01:29:16 +03:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|