-
Notifications
You must be signed in to change notification settings - Fork 34
/
knip.json
38 lines (38 loc) · 896 Bytes
/
knip.json
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
37
38
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"workspaces": {
"apps/backend": {
"entry": [
"src/processes/proc/*.ts",
"src/build/bin/*.ts",
"src/database/testing/index.ts",
"src/graphql/definitions/*.ts"
],
"ignore": [
"db/**/*",
"knexfile.js",
"src/graphql/__generated__/**/*",
"**/bin/**/*"
],
"ignoreDependencies": ["pg"]
},
"apps/frontend": {
"ignore": [
"src/gql/**/*",
"vite.config.ts",
"src/util/color-detection/worker.ts"
],
"ignoreDependencies": [
"@radix-ui/colors",
"@vitejs/plugin-react-swc",
"@sentry/vite-plugin"
],
"vite": {
"config": []
}
}
},
"exclude": ["classMembers"],
"ignore": ["playwright.config.mts"],
"ignoreBinaries": ["stripe", "sleep", "ngrok"]
}