forked from swordev/suid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 811 Bytes
/
Copy pathtsconfig.json
File metadata and controls
25 lines (25 loc) · 811 Bytes
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
{
"compilerOptions": {
"paths": {
"@suid/base": ["./../base/src"],
"@suid/base/*": ["./../base/src/*"],
"@suid/css": ["./../css/src"],
"@suid/css/*": ["./../css/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/*"]
}
},
"extends": "./../../tsconfig.json",
"include": ["src", "test"],
"references": [
{ "path": "./../base/tsconfig.build.json" },
{ "path": "./../css/tsconfig.build.json" },
{ "path": "./../system/tsconfig.build.json" },
{ "path": "./../types/tsconfig.build.json" },
{ "path": "./../utils/tsconfig.build.json" }
]
}