2017-10-18 10:20:40 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"declaration": false,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"es2015"
|
|
|
|
],
|
|
|
|
"module": "es2015",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"sourceMap": true,
|
2018-02-23 12:02:56 +00:00
|
|
|
"target": "es5",
|
|
|
|
"baseUrl": "./src",
|
|
|
|
"paths": {
|
|
|
|
"@addon/*": ["addon/*"],
|
2018-03-12 14:44:41 +00:00
|
|
|
"@app/*": ["app/*"],
|
2018-02-23 12:02:56 +00:00
|
|
|
"@classes/*": ["classes/*"],
|
|
|
|
"@core/*": ["core/*"],
|
|
|
|
"@providers/*": ["providers/*"],
|
2018-03-01 15:55:49 +00:00
|
|
|
"@components/*": ["components/*"],
|
2018-03-12 14:44:41 +00:00
|
|
|
"@directives/*": ["directives/*"],
|
|
|
|
"@pipes/*": ["pipes/*"]
|
2018-02-23 12:02:56 +00:00
|
|
|
}
|
2017-10-18 10:20:40 +00:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*.ts"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
],
|
|
|
|
"compileOnSave": false,
|
|
|
|
"atom": {
|
|
|
|
"rewriteTsconfig": false
|
|
|
|
}
|
2018-02-27 07:39:45 +00:00
|
|
|
}
|