2016-12-23 12:06:53 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2017-04-15 16:20:18 +03:00
|
|
|
"baseUrl": "./src",
|
2016-12-23 12:06:53 +03:00
|
|
|
"module": "commonjs",
|
2017-04-17 15:57:22 +03:00
|
|
|
"target": "es2015",
|
2016-12-23 12:06:53 +03:00
|
|
|
"declaration": false,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"removeComments": false,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"noImplicitReturns": true,
|
2016-12-27 01:21:50 +03:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUnusedParameters": true,
|
2017-03-20 19:46:25 +03:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"es2015",
|
2018-08-26 18:35:04 +03:00
|
|
|
"es2015.iterable",
|
2017-06-24 00:52:51 +03:00
|
|
|
"es2017",
|
2017-03-20 19:46:25 +03:00
|
|
|
"es7"
|
2017-04-12 13:12:57 +03:00
|
|
|
]
|
2016-12-23 12:06:53 +03:00
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"exclude": [
|
2017-06-24 00:52:51 +03:00
|
|
|
"dist",
|
2016-12-26 02:04:56 +03:00
|
|
|
"node_modules",
|
2017-04-11 23:45:59 +03:00
|
|
|
"*/node_modules",
|
|
|
|
"terminus*",
|
2016-12-27 01:21:50 +03:00
|
|
|
"platforms"
|
2016-12-23 12:06:53 +03:00
|
|
|
]
|
|
|
|
}
|