-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathknip.json
More file actions
25 lines (25 loc) · 615 Bytes
/
knip.json
File metadata and controls
25 lines (25 loc) · 615 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
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"workspaces": {
"packages/core": {
"entry": ["src/main.tsx"],
"project": ["src/**/*.{ts,tsx}"]
},
"packages/server": {
"entry": ["src/index.ts"],
"project": ["src/**/*.ts"]
},
"packages/proxy": {
"entry": ["src/index.ts"],
"project": ["src/**/*.ts"]
},
"packages/shared": {
"entry": ["src/index.ts", "src/types/index.ts", "src/constants/index.ts"],
"project": ["src/**/*.ts"]
},
"www": {
"entry": ["src/router.tsx"],
"project": ["src/**/*.{ts,tsx}"]
}
}
}