-
Notifications
You must be signed in to change notification settings - Fork 405
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
37 lines (37 loc) · 1.63 KB
/
tsconfig.base.json
File metadata and controls
37 lines (37 loc) · 1.63 KB
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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"baseUrl": ".",
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"isolatedModules": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2022",
"module": "preserve",
"paths": {
"@integration/*": ["integration/src/app/*"],
"@ngxs/devtools-plugin": ["packages/devtools-plugin/index.ts"],
"@ngxs/form-plugin": ["packages/form-plugin/index.ts"],
"@ngxs/hmr-plugin": ["packages/hmr-plugin/index.ts"],
"@ngxs/logger-plugin": ["packages/logger-plugin/index.ts"],
"@ngxs/router-plugin": ["packages/router-plugin/index.ts"],
"@ngxs/router-plugin/internals": ["packages/router-plugin/internals/src/index.ts"],
"@ngxs/storage-plugin": ["packages/storage-plugin/index.ts"],
"@ngxs/storage-plugin/internals": ["packages/storage-plugin/internals/src/index.ts"],
"@ngxs/store": ["packages/store/index.ts"],
"@ngxs/store/experimental": ["packages/store/experimental/src/index.ts"],
"@ngxs/store/internals": ["packages/store/internals/src/index.ts"],
"@ngxs/store/internals/testing": ["packages/store/internals/testing/src/index.ts"],
"@ngxs/store/operators": ["packages/store/operators/src/index.ts"],
"@ngxs/store/plugins": ["packages/store/plugins/src/index.ts"],
"@ngxs/tutorials/create-app": ["tutorials/create-app/src/index.ts"],
"@ngxs/websocket-plugin": ["packages/websocket-plugin/index.ts"]
}
}
}