forked from ngxs/store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
35 lines (35 loc) · 1.35 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
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"downlevelIteration": true,
"outDir": "out-tsc/lib",
"paths": {
"@integration/*": ["integration/app/*"],
"@ngxs/store": ["packages/store/index.ts"],
"@ngxs/store/operators": ["packages/store/operators/src/index.ts"],
"@ngxs/store/internals": ["packages/store/internals/src/index.ts"],
"@ngxs/store/internals/testing": ["packages/store/internals/testing/index.ts"],
"@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/storage-plugin": ["packages/storage-plugin/index.ts"],
"@ngxs/websocket-plugin": ["packages/websocket-plugin/index.ts"]
},
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictPropertyInitialization": false,
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"lib": ["es2017", "dom"],
"typeRoots": ["node_modules/@types"]
},
"exclude": ["@ngxs/**", "integrations/**", "cypress"]
}