-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
31 lines (30 loc) · 1.16 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
{
"extends": "./tsconfig.build.json",
"compilerOptions": {
"baseUrl": ".",
"noEmit": true,
"generateCpuProfile": "profile.cpuprofile",
"incremental": false,
"sourceMap": false,
"paths": {
"@re-flex/ui": ["packages/ui/src"],
"@re-flex/ui/*": ["packages/ui/src/*"],
"@re-flex/styled": ["packages/styled/src"],
"@re-flex/styled/*": ["packages/styled/src/*"],
"@re-flex/styles": ["packages/styles/src"],
"@re-flex/styles/*": ["packages/styles/src/*"],
"@re-flex/form": ["packages/form/src"],
"@re-flex/form/*": ["packages/form/src/*"],
"@re-flex/transition-group": ["packages/transition-group/src"],
"@re-flex/transition-group/*": ["packages/transition-group/src/*"],
"@re-flex/animatable": ["packages/animatable/src"],
"@re-flex/animatable/*": ["packages/animatable/src/*"],
"@re-flex/object-path": ["packages/object-path"],
"@re-flex/validator": ["packages/validator"],
"@re-flex/i18n": ["packages/i18n/src"],
"@re-flex/i18n/*": ["packages/i18n/src/*"],
"@re-flex/utils": ["packages/utils/src"],
"@re-flex/utils/*": ["packages/util/src/*"]
}
}
}