2016-05-30 14:05:09 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2016-10-06 18:25:52 -04:00
|
|
|
"target": "es5",
|
2016-05-30 14:05:09 -04:00
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"sourceMap": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
2016-11-20 20:28:37 -05:00
|
|
|
"lib": ["es2015", "dom"],
|
2016-05-30 14:05:09 -04:00
|
|
|
"noImplicitAny": true,
|
2016-10-06 18:25:52 -04:00
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
2016-10-20 20:01:16 -04:00
|
|
|
"typeRoots": [
|
|
|
|
"../../node_modules/@types/"
|
|
|
|
]
|
2016-10-12 04:44:49 -04:00
|
|
|
},
|
2016-10-23 03:51:03 -04:00
|
|
|
"compileOnSave": true,
|
2016-10-12 04:44:49 -04:00
|
|
|
"exclude": [
|
|
|
|
"node_modules/*",
|
|
|
|
"**/*-aot.ts"
|
|
|
|
]
|
2016-05-30 14:05:09 -04:00
|
|
|
}
|