forked from swordev/suid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
33 lines (33 loc) · 1.15 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
{
"compilerOptions": {
"types": ["vite/client"],
"baseUrl": ".",
"paths": {
"@suid/base": ["./../base/src"],
"@suid/base/*": ["./../base/src/*"],
"@suid/codemod": ["./../codemod/src"],
"@suid/codemod/*": ["./../codemod/src/*"],
"@suid/icons-material": ["./../icons-material/lib"],
"@suid/icons-material/*": ["./../icons-material/lib/*"],
"@suid/material": ["./../material/src"],
"@suid/material/*": ["./../material/src/*"],
"@suid/system": ["./../system/src"],
"@suid/system/*": ["./../system/src/*"],
"@suid/types": ["./../types/src"],
"@suid/types/*": ["./../types/src/*"],
"@suid/utils": ["./../utils/src"],
"@suid/utils/*": ["./../utils/src/*"],
"~/*": ["./src/*"]
}
},
"extends": "./../../tsconfig.json",
"include": ["src", "test"],
"references": [
{ "path": "./../base/tsconfig.build.json" },
{ "path": "./../codemod/tsconfig.build.json" },
{ "path": "./../material/tsconfig.build.json" },
{ "path": "./../system/tsconfig.build.json" },
{ "path": "./../types/tsconfig.build.json" },
{ "path": "./../utils/tsconfig.build.json" }
]
}