-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathknip.json
More file actions
34 lines (34 loc) · 938 Bytes
/
knip.json
File metadata and controls
34 lines (34 loc) · 938 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
26
27
28
29
30
31
32
33
34
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"ignore": [".claude/skills/**"],
"workspaces": {
"apps/app": {
"entry": ["src/entry-client.tsx", "worker/index.ts"],
"project": ["src/**/*.{ts,tsx}", "worker/**/*.ts"],
"paths": {
"@/*": ["src/*"]
},
"ignore": ["src/components/ui/**", "src/services/**"]
},
"apps/www": {
"entry": ["src/routes/**/*.tsx", "workers/app.ts"],
"project": ["src/**/*.{ts,tsx}", "workers/**/*.ts"],
"ignoreDependencies": ["@react-router/node", "isbot", "@react-router/cloudflare"]
},
"apps/api": {
"entry": ["src/index.ts"],
"project": ["src/**/*.ts"],
"ignore": [
"scripts/**",
"src/db/schema/index.ts",
"src/test-entry.ts",
"src/mocks/runtime.ts",
"src/runtime/types.ts"
]
}
},
"ignoreExportsUsedInFile": true,
"rules": {
"unlisted": "off"
}
}