forked from decocms/studio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknip.jsonc
More file actions
36 lines (36 loc) · 833 Bytes
/
knip.jsonc
File metadata and controls
36 lines (36 loc) · 833 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
35
36
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"workspaces": {
".": {
"entry": ["scripts/**/*.ts"],
"project": ["scripts/**/*.ts"]
},
"apps/web": {
"ignoreDependencies": [
// @hookform/resolvers have ajv deps as optional peer dependencies
"ajv-errors",
"ajv-formats",
"ajv"
]
},
"packages/runtime": {
"ignoreFiles": [
// Used on CI, not detected by knip atm
"scripts/generate-json-schema.ts"
]
},
"packages/sdk": {
// TODO: Check if we really need this observability folder
"ignore": ["src/observability/**/*"]
}
},
"ignore": [
"**/*.d.ts",
"**/*.test.ts",
"**/*.test.tsx",
"**/test/**",
"**/dist/**",
"**/node_modules/**"
],
"ignoreDependencies": ["@types/*"]
}