2015-09-15 13:23:36 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2015-12-17 14:27:34 +01:00
|
|
|
"sourceMap": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"outDir": "public_gen",
|
|
|
|
|
"noImplicitAny": false,
|
|
|
|
|
"target": "es5",
|
|
|
|
|
"rootDir": "public/",
|
|
|
|
|
"module": "system",
|
|
|
|
|
"noEmitOnError": true,
|
2016-04-11 16:21:25 -04:00
|
|
|
"emitDecoratorMetadata": true,
|
2016-12-09 21:53:00 +00:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"noImplicitReturns":false,
|
|
|
|
|
"noImplicitThis":false,
|
|
|
|
|
"noImplicitUseStrict":false,
|
2016-12-09 23:41:07 +00:00
|
|
|
"noUnusedLocals":false,
|
|
|
|
|
"moduleResolution": "classic"
|
2015-12-17 14:27:34 +01:00
|
|
|
},
|
2016-12-09 21:53:00 +00:00
|
|
|
"include": [
|
2017-05-17 13:43:17 +02:00
|
|
|
"public/app/**/*.ts",
|
|
|
|
|
"public/test/**/*.ts"
|
2016-12-09 21:53:00 +00:00
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"public/vendor/**/*",
|
|
|
|
|
"public/**/*.d.ts"
|
2015-12-17 14:27:34 +01:00
|
|
|
]
|
2016-12-09 21:53:00 +00:00
|
|
|
|
2016-04-11 16:21:25 -04:00
|
|
|
}
|