-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknip.json
More file actions
64 lines (64 loc) · 1.88 KB
/
Copy pathknip.json
File metadata and controls
64 lines (64 loc) · 1.88 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"$schema": "https://unpkg.com/knip@6/schema.json",
"ignore": [
"apps/dashboard/app/lib/environment-runs-stream.client.ts",
"apps/dashboard/app/lib/run-event-stream.client.ts",
"packages/database/src/generated/prisma/browser.ts",
"packages/database/src/generated/prisma/internal/prismaNamespaceBrowser.ts"
],
"ignoreIssues": {
"packages/database/src/generated/**": ["exports", "types"]
},
"ignoreBinaries": ["goose", "helm", "infisical", "mint"],
"workspaces": {
".": {
"entry": ["package.json"],
"project": ["*.json", ".configs/**/*.json"]
},
"apps/api": {
"entry": ["src/index.ts", "src/dev/*.ts"],
"project": ["src/**/*.ts", "test/**/*.ts"]
},
"apps/dashboard": {
"entry": ["app/routes/**/*.{ts,tsx}"],
"project": ["app/**/*.{ts,tsx}", "test/**/*.{ts,tsx}", "*.ts"]
},
"packages/core": {
"entry": ["src/index.ts"],
"project": ["src/**/*.ts", "test/**/*.ts"]
},
"packages/api-contracts": {
"entry": ["src/index.ts"],
"project": ["src/**/*.ts", "test/**/*.ts"]
},
"packages/database": {
"entry": ["prisma/seed/**/*.ts"],
"project": ["src/**/*.ts", "test/**/*.ts", "prisma/**/*.ts"]
},
"packages/sdk": {
"entry": ["src/index.ts"],
"project": ["src/**/*.ts"]
},
"packages/storage": {
"entry": ["src/index.ts"],
"project": ["src/**/*.ts", "test/**/*.ts"]
},
"packages/worker": {
"entry": ["src/index.ts", "src/tasks/registry.ts"],
"project": ["src/**/*.ts", "test/**/*.ts", "scripts/**/*.mjs"]
},
"packages/clickhouse": {
"entry": ["package.json"],
"project": []
},
"docs": {
"entry": ["docs.json", "**/*.mdx"],
"project": ["**/*.mdx"]
},
"apps/e2e": {
"entry": ["tests/**/*.ts"],
"project": ["**/*.ts"]
}
},
"treatConfigHintsAsErrors": true
}