-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathknip.jsonc
More file actions
36 lines (36 loc) · 1.01 KB
/
knip.jsonc
File metadata and controls
36 lines (36 loc) · 1.01 KB
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
35
36
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"ignoreBinaries": ["playwright"],
"workspaces": {
".": {
"entry": ["plugins/**/*", "scripts/**/*.ts"],
"project": [],
"ignoreDependencies": []
},
"packages/ui": {},
"packages/runtime": {
"entry": ["scripts/generate-json-schema.ts"]
},
"apps/mesh": {
"entry": [
"src/cli.ts",
"migrations/**/*.ts",
"scripts/**/*.ts",
// Dev-only module loaded via require() - needs explicit entry
"src/api/routes/dev-only.ts"
],
"ignore": ["src/api/index.ts"],
// Resolved at bundle-time by scripts/bundle-server-script.ts ALWAYS_INCLUDE
"ignoreDependencies": ["@jitl/quickjs-wasmfile-release-sync"]
},
"packages/mesh-sdk": {
"ignoreDependencies": ["sonner"]
},
"packages/typegen": {}
},
"ignoreDependencies": ["@types/*"],
// TODO(@camudo): Remove this config once I fix all unused type exports
"ignoreIssues": {
"**/*": ["types"]
}
}