forked from ngneat/elf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
30 lines (30 loc) · 1.06 KB
/
tsconfig.base.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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2020",
"module": "esnext",
"lib": ["ES2020", "dom"],
"strict": true,
"baseUrl": ".",
"paths": {
"@ngneat/elf": ["packages/store/src/index.ts"],
"@ngneat/elf-cli": ["packages/cli/src/index.ts"],
"@ngneat/elf-cli-ng": ["packages/cli-ng/src/index.ts"],
"@ngneat/elf-devtools": ["packages/devtools/src/index.ts"],
"@ngneat/elf-entities": ["packages/entities/src/index.ts"],
"@ngneat/elf-mocks": ["packages/mocks/src/index.ts"],
"@ngneat/elf-pagination": ["packages/pagination/src/index.ts"],
"@ngneat/elf-persist-state": ["packages/persist-state/src/index.ts"],
"@ngneat/elf-requests": ["packages/requests/src/index.ts"],
"@ngneat/elf-state-history": ["packages/state-history/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}