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