-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknip.json
More file actions
25 lines (25 loc) · 698 Bytes
/
knip.json
File metadata and controls
25 lines (25 loc) · 698 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@6/schema.json",
"ignoreFiles": ["packages/docs/.astro/**"],
"workspaces": {
"packages/shared": {
"project": ["src/**/*.ts"]
},
"packages/cli": {
"entry": ["scripts/*.cjs"],
"project": ["src/**/*.ts", "scripts/*.cjs"]
},
"packages/notifier-bot": {
"entry": ["convex/http.ts", "convex/crons.ts"],
"project": ["convex/**/*.ts", "!convex/_generated/**"]
},
"packages/vscode-extension": {
"entry": ["src/extension.ts"],
"project": ["src/**/*.ts"]
},
"packages/action": {
"entry": ["src/main.ts", "scripts/*.cjs"],
"project": ["src/**/*.ts", "scripts/*.cjs"]
}
}
}