2017-01-06 22:38:04 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"module": "es2015",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"noEmitHelpers": true,
|
|
|
|
"strictNullChecks": false,
|
|
|
|
"baseUrl": "./src",
|
|
|
|
"paths": {
|
|
|
|
},
|
|
|
|
"lib": [
|
|
|
|
"es2015",
|
|
|
|
"dom"
|
|
|
|
],
|
|
|
|
"types": [
|
2017-02-09 18:58:29 +03:00
|
|
|
"webpack"
|
2017-01-06 22:38:04 +03:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"dist",
|
|
|
|
"**/*.spec.ts",
|
|
|
|
"**/*.e2e.ts"
|
|
|
|
],
|
|
|
|
"awesomeTypescriptLoaderOptions": {
|
|
|
|
"forkChecker": true,
|
|
|
|
"useWebpackText": true
|
|
|
|
},
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
"genDir": "./compiled",
|
|
|
|
"skipMetadataEmit": true
|
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"buildOnSave": false,
|
|
|
|
"atom": { "rewriteTsconfig": false }
|
|
|
|
}
|