-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.webpack.json
executable file
·58 lines (56 loc) · 1.21 KB
/
tsconfig.webpack.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"noEmit": true,
"noEmitHelpers": true,
"importHelpers": true,
"strictNullChecks": false,
"baseUrl": "./app",
"paths": {
"utils": [ "./app/utils" ],
"core": [ "./app/core" ],
"pages": [ "./app/pages" ],
"styles": [ "./app/styles" ],
"static": [ "./app/static" ],
"config": [ "./app/config" ],
"layouts": [ "./app/layouts" ],
"services": [ "./app/services" ],
"components": [ "./app/components" ]
},
"lib": [
"es2015",
"dom"
],
"typeRoots": [
"node_modules/@types"
],
"types": [
"node"
]
},
"exclude": [
"node_modules",
"dist",
"src/**/*.spec.ts",
"src/**/*.e2e.ts"
],
"awesomeTypescriptLoaderOptions": {
"forkChecker": true,
"useWebpackText": true
},
"angularCompilerOptions": {
"genDir": "./compiled",
"skipMetadataEmit": true
},
"compileOnSave": false,
"buildOnSave": false,
"atom": {
"rewriteTsconfig": false
}
}