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