forked from ngrx/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
55 lines (55 loc) · 1.68 KB
/
tsconfig.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
{
"compilerOptions": {
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"strictPropertyInitialization": false,
"noStrictGenericChecks": true,
"lib": ["es2016", "dom"],
"outDir": "../out-tsc/app",
"target": "es5",
"module": "commonjs",
"baseUrl": "",
"rootDir": "./",
"strict": true,
"paths": {
"@ngrx/effects": ["./modules/effects"],
"@ngrx/effects/testing": ["./modules/effects/testing"],
"@ngrx/effects/schematics-core": ["./modules/effects/schematics-core"],
"@ngrx/store": ["./modules/store"],
"@ngrx/store/schematics-core": ["./modules/store/schematics-core"],
"@ngrx/store-devtools": ["./modules/store-devtools"],
"@ngrx/store-devtools/schematics-core": [
"./modules/store-devtools/schematics-core"
],
"@ngrx/router-store": ["./modules/router-store"],
"@ngrx/router-store/schematics-core": [
"./modules/router-store/schematics-core"
],
"@ngrx/entity": ["./modules/entity"],
"@ngrx/entity/schematics-core": ["./modules/entity/schematics-core"],
"@ngrx/schematics": ["./modules/schematics"],
"@ngrx/schematics/schematics-core": [
"./modules/schematics/schematics-core"
],
"@example-app/*": ["./projects/example-app/src/app/*"]
}
},
"exclude": [
"bazel-out",
"dist",
"node_modules",
"**/*/node_modules",
"modules/schematics/src/*/files/**/*"
],
"compileOnSave": false,
"buildOnSave": false,
"atom": {
"rewriteTsconfig": false
},
"bazelOptions": {
"suppressTsconfigOverrideWarnings": true
}
}