forked from brick-design/brick-design
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
44 lines (44 loc) · 928 Bytes
/
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
36
37
38
39
40
41
42
43
44
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"baseUrl": ".",
"allowSyntheticDefaultImports": true,
"paths": {
"@brickd/react": [
"packages/react/src/index"
],
"@brickd/react/*": [
"packages/react/src/*"
],
"@brickd/core": [
"packages/core/src/index"
],
"@brickd/core/*": [
"packages/core/src/*"
],
"@brickd/react-web": [
"packages/react-web/src/index"
],
"@brickd/react-web/*": [
"packages/react-web/src/*"
],
"@brickd/render": [
"packages/render/src/index"
],
"@brickd/render/*": [
"packages/render/src/*"
],
"@brickd/utils": [
"packages/utils/src/index"
],
"@brickd/utils/*": [
"packages/utils/src/*"
]
}
},
"exclude": [
"**/node_modules/**",
"**/lib/**",
"node_modules"
]
}