2016-12-23 09:06:53 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": "./app/src",
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es5",
|
|
|
|
"declaration": false,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"removeComments": false,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitReturns": true,
|
2016-12-26 22:21:50 +00:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUnusedParameters": true,
|
2017-03-20 16:46:25 +00:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"es2015",
|
2017-04-06 20:25:41 +00:00
|
|
|
"es2015.iterable.ts",
|
2017-03-20 16:46:25 +00:00
|
|
|
"es7"
|
2017-04-11 20:45:59 +00:00
|
|
|
],
|
|
|
|
"paths": {
|
|
|
|
"terminus-*": ["../../terminus-*"]
|
|
|
|
}
|
2016-12-23 09:06:53 +00:00
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"exclude": [
|
2016-12-25 23:04:56 +00:00
|
|
|
"node_modules",
|
2017-04-11 20:45:59 +00:00
|
|
|
"*/node_modules",
|
|
|
|
"terminus*",
|
2016-12-26 22:21:50 +00:00
|
|
|
"platforms"
|
2016-12-23 09:06:53 +00:00
|
|
|
],
|
2016-12-26 22:21:50 +00:00
|
|
|
"filesGlob" : [
|
|
|
|
"app/src/*.ts",
|
|
|
|
"app/src/**/*.ts",
|
|
|
|
"!node_modules/**",
|
2017-04-11 20:45:59 +00:00
|
|
|
"!app/node_modules/**",
|
|
|
|
"!*/node_modules/**"
|
2016-12-23 09:06:53 +00:00
|
|
|
]
|
|
|
|
}
|