2016-12-28 15:49:51 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"noEmitOnError": false,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"noImplicitReturns": true,
|
2016-12-28 18:56:24 -07:00
|
|
|
"noUnusedParameters": false,
|
2016-12-28 18:01:40 -07:00
|
|
|
"noUnusedLocals": true,
|
2016-12-28 15:49:51 -07:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"declaration": false,
|
|
|
|
"sourceMap": false,
|
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
|
|
|
"removeComments": false,
|
|
|
|
"noLib": false,
|
|
|
|
"outDir": "built",
|
|
|
|
"rootDir": "src"
|
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"include": [
|
|
|
|
"./node_modules/typescript/lib/lib.es6.d.ts",
|
2017-02-19 09:00:00 -07:00
|
|
|
"./src/**/*.ts"
|
|
|
|
],
|
|
|
|
"exclude": [
|
2017-02-21 11:27:27 -07:00
|
|
|
"./src/web/app/**/*.ts"
|
2016-12-28 15:49:51 -07:00
|
|
|
]
|
|
|
|
}
|