2016-12-23 12:06:53 +03: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-27 01:21:50 +03:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noUnusedLocals": true
|
2016-12-23 12:06:53 +03:00
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"exclude": [
|
2016-12-26 02:04:56 +03:00
|
|
|
"node_modules",
|
2016-12-27 01:21:50 +03:00
|
|
|
"platforms"
|
2016-12-23 12:06:53 +03:00
|
|
|
],
|
2016-12-27 01:21:50 +03:00
|
|
|
"filesGlob" : [
|
|
|
|
"app/src/*.ts",
|
|
|
|
"app/src/**/*.ts",
|
|
|
|
"!node_modules/**",
|
|
|
|
"!app/node_modules/**",
|
2016-12-23 12:06:53 +03:00
|
|
|
"node_modules/rxjs/Rx.d.ts"
|
|
|
|
]
|
|
|
|
}
|