1 |
49598
|
stefanos.g
|
{
|
2 |
|
|
"compilerOptions": {
|
3 |
|
|
"target": "es5",
|
4 |
|
|
"module": "es6",
|
5 |
|
|
"outDir": "dist",
|
6 |
|
|
"rootDir": ".",
|
7 |
|
|
"sourceMap": true,
|
8 |
|
|
"emitDecoratorMetadata": true,
|
9 |
|
|
"experimentalDecorators": true,
|
10 |
|
|
"moduleResolution": "node",
|
11 |
|
|
"typeRoots": [
|
12 |
|
|
"node_modules/@types"
|
13 |
|
|
]
|
14 |
|
|
},
|
15 |
|
|
"exclude": [
|
16 |
|
|
"node_modules",
|
17 |
|
|
"dist"
|
18 |
|
|
],
|
19 |
|
|
"awesomeTypescriptLoaderOptions": {
|
20 |
|
|
"useWebpackText": true
|
21 |
|
|
},
|
22 |
|
|
"angularCompilerOptions": {
|
23 |
|
|
"debug": false,
|
24 |
|
|
"skipMetadataEmit": true
|
25 |
|
|
},
|
26 |
|
|
"compileOnSave": false,
|
27 |
|
|
"buildOnSave": false,
|
28 |
|
|
"atom": {
|
29 |
|
|
"rewriteTsconfig": false
|
30 |
|
|
}
|
31 |
|
|
}
|