-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathknip.jsonc
More file actions
94 lines (94 loc) · 2.42 KB
/
knip.jsonc
File metadata and controls
94 lines (94 loc) · 2.42 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"$schema": "https://unpkg.com/knip@next/schema.json",
"workspaces": {
".": {
"entry": [
"milady.mjs",
"scripts/**/*.ts",
"scripts/**/*.mjs",
"scripts/**/*.js"
],
"project": ["scripts/**/*.ts"],
"ignore": ["dist/**", "build/**", "coverage/**", "**/*.test.ts"]
},
"apps/app": {
"entry": [
"src/main.tsx",
"vite.config.ts",
"vitest.config.ts",
"index.html",
"capacitor.config.ts"
],
"project": ["src/**/*.{ts,tsx}"],
"ignore": [
"dist/**",
"build/**",
"coverage/**",
"**/*.test.ts",
"public/**",
"test/**",
".storybook/**",
"src/stories/**",
"playwright.electrobun.packaged.config.ts",
"cypress.config.ts",
"**/*.cy.ts",
"**/cypress/**",
"tsdown.config.ts"
]
},
"apps/app/electrobun": {
"entry": [
"src/index.ts",
"src/bridge/electrobun-preload.ts",
"electrobun.config.ts",
"vitest.config.ts"
],
"project": ["src/**/*.ts", "scripts/**/*.ts"],
"ignore": [
"build/**",
"coverage/**",
"src/preload.js",
"src/libMacWindowEffects.dylib",
"src/**/__tests__/**"
]
},
"apps/homepage": {
"entry": ["src/main.tsx", "vite.config.ts", "index.html"],
"project": ["src/**/*.{ts,tsx}"],
"ignore": ["dist/**", "build/**", "coverage/**", "public/**"]
},
"packages/app-core": {
"entry": [
"src/index.ts",
"src/api/index.ts",
"src/config/index.ts",
"src/events/index.ts",
"src/hooks/index.ts",
"src/state/index.ts",
"src/components/index.ts",
"src/utils/index.ts",
"src/platform/index.ts",
"src/navigation/index.ts",
"src/i18n/index.ts",
"src/actions/index.ts",
"src/voice/index.ts",
"src/autonomy/index.ts",
"src/coding/index.ts",
"src/providers/index.ts",
"src/bridge/index.ts",
"src/bridge/electrobun-rpc.ts",
"src/bridge/electrobun-runtime.ts"
],
"project": ["src/**/*.{ts,tsx}"],
"ignore": [
"dist/**",
"build/**",
"coverage/**",
"**/*.test.ts",
"**/*.test.tsx",
"**/__tests__/**"
]
}
},
"ignore": ["**/*.d.ts", ".eslintrc.js", "**/__tests__/**", "**/__mocks__/**"]
}