-
Notifications
You must be signed in to change notification settings - Fork 4
/
tsconfig.base.json
47 lines (47 loc) · 2.07 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"strict": false,
"noPropertyAccessFromIndexSignature": false,
"paths": {
"@frontend/dhedge-theme": ["libs/dhedge/theme/src/index.ts"],
"@frontend/dhedge-withdraw": ["libs/dhedge/withdraw/src/index.ts"],
"@frontend/lts-burn": ["libs/lts/burn/src/index.ts"],
"@frontend/lts-constants": ["libs/lts/constants/src/index.ts"],
"@frontend/lts-settings": ["libs/lts/settings/src/index.ts"],
"@frontend/lts-withdraw": ["libs/lts/withdraw/src/index.ts"],
"@frontend/mstable-data-access": [
"libs/mstable/data-access/src/index.ts"
],
"@frontend/mstable-explore": ["libs/mstable/explore/src/index.ts"],
"@frontend/mstable-metavault": ["libs/mstable/meta-vault/src/index.ts"],
"@frontend/mstable-settings": ["libs/mstable/settings/src/index.ts"],
"@frontend/mstable-theme": ["libs/mstable/theme/src/index.ts"],
"@frontend/mstable-vault": ["libs/mstable/vault/src/index.ts"],
"@frontend/shared-constants": ["libs/shared/constants/src/index.ts"],
"@frontend/shared-hooks": ["libs/shared/hooks/src/index.ts"],
"@frontend/shared-icons": ["libs/shared/icons/src/index.ts"],
"@frontend/shared-providers": ["libs/shared/providers/src/index.ts"],
"@frontend/shared-services": ["libs/shared/services/src/index.ts"],
"@frontend/shared-types": ["libs/shared/types/src/index.ts"],
"@frontend/shared-ui": ["libs/shared/ui/src/index.ts"],
"@frontend/shared-utils": ["libs/shared/utils/src/index.ts"],
"@frontend/tools-nx-plugin": ["libs/tools/nx-plugin/src/index.ts"],
"@frontend/tools-storybook": ["libs/tools/storybook/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}