2016-09-22 15:54:26 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"declaration": false,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"outDir": "dist",
|
|
|
|
"sourceMap": true,
|
|
|
|
"sourceRoot": "src",
|
2016-11-22 14:36:12 +01:00
|
|
|
"noEmitHelpers": true,
|
2016-09-22 15:54:26 +02:00
|
|
|
"target": "es5",
|
2016-11-22 14:36:12 +01:00
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
|
|
|
],
|
|
|
|
"lib": ["es6", "dom"]
|
2016-09-22 15:54:26 +02:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
],
|
2016-11-22 14:36:12 +01:00
|
|
|
"angularCompilerOptions": {
|
|
|
|
"debug": false
|
|
|
|
},
|
2016-09-22 15:54:26 +02:00
|
|
|
"compileOnSave": false,
|
|
|
|
"buildOnSave": false,
|
|
|
|
"atom": { "rewriteTsconfig": false }
|
|
|
|
}
|