-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.webpack.json
40 lines (40 loc) · 1.11 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
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"target": "es5",
"module": "esnext",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"noEmitHelpers": true,
"skipLibCheck": true,
"importHelpers": true,
"strictNullChecks": false,
"noStrictGenericChecks": true,
"lib": ["es7", "dom"],
"baseUrl": "./src",
"types": ["reflect-metadata", "hammerjs", "node", "googlemaps"],
"paths": {
"@angular/*": ["../node_modules/@angular/*"],
"@modules/server.common/*": ["../../common/src/*"],
"@modules/client.common.angular2/*": ["../../common-angular/src/*"],
"@modules/*": ["./modules/*"],
"@pyro/*": ["../../common/src/@pyro/*"],
"mongoose": ["../../common-angular/src/mongoose-placeholder"],
"typeorm": ["../../common-angular/src/typeorm-placeholder"],
"environments/*": ["./environments/*"]
}
},
"angularCompilerOptions": {
"skipMetadataEmit": true,
"enableIvy": false
},
"include": [
"./src",
"./*.ts",
"../common/**/*.d.ts",
"../common-angular/**/*.ts"
]
}