2016-05-25 18:34:31 +03:00
|
|
|
{
|
2016-09-08 13:19:33 +03:00
|
|
|
"compilerOptions": {
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2016-09-02 23:24:51 +03:00
|
|
|
"module": "commonjs",
|
2016-09-08 13:19:33 +03:00
|
|
|
"target": "es5",
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"sourceMap": true,
|
|
|
|
"pretty": true,
|
|
|
|
"moduleResolution": "node",
|
2017-08-02 14:04:08 +03:00
|
|
|
"noEmit": true,
|
2017-05-08 11:24:25 +03:00
|
|
|
"noEmitHelpers": true,
|
|
|
|
"strictNullChecks": false,
|
|
|
|
"typeRoots": [ "./node_modules/@types" ],
|
2017-03-15 18:51:46 +03:00
|
|
|
"lib": [
|
2017-04-23 18:00:36 +03:00
|
|
|
"dom", "es2016", "dom.iterable"
|
2016-09-08 13:19:33 +03:00
|
|
|
],
|
2017-05-08 11:24:25 +03:00
|
|
|
"types": [
|
|
|
|
"webpack",
|
|
|
|
"jasmine",
|
|
|
|
"should"
|
|
|
|
]
|
2016-09-08 13:19:33 +03:00
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"exclude": [
|
2016-08-28 21:46:10 +03:00
|
|
|
"node_modules",
|
2017-05-08 11:24:25 +03:00
|
|
|
"dist",
|
|
|
|
"**/*.e2e.ts"
|
2016-08-28 21:46:10 +03:00
|
|
|
],
|
2016-09-08 13:19:33 +03:00
|
|
|
"awesomeTypescriptLoaderOptions": {
|
2016-08-28 21:46:10 +03:00
|
|
|
"resolveGlobs": true,
|
2016-09-02 23:24:51 +03:00
|
|
|
"forkChecker": true,
|
2016-09-08 13:19:33 +03:00
|
|
|
"useWebpackText": true
|
2017-05-08 11:24:25 +03:00
|
|
|
},
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
"genDir": "./compiled",
|
|
|
|
"skipMetadataEmit": true
|
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"buildOnSave": false,
|
|
|
|
"atom": { "rewriteTsconfig": false }
|
2016-05-25 18:34:31 +03:00
|
|
|
}
|