2017-02-22 16:54:08 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2017-10-06 23:43:36 +02:00
|
|
|
"allowJs": true,
|
2017-02-22 16:54:08 +01:00
|
|
|
"noEmitOnError": false,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"declaration": false,
|
|
|
|
"sourceMap": false,
|
2017-03-04 11:20:58 +01:00
|
|
|
"target": "es2017",
|
2017-02-22 16:54:08 +01:00
|
|
|
"module": "commonjs",
|
|
|
|
"removeComments": false,
|
|
|
|
"noLib": false
|
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"include": [
|
|
|
|
"./**/*.ts"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"./web/app/**/*.ts"
|
|
|
|
]
|
|
|
|
}
|