-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathknip.jsonc
More file actions
50 lines (50 loc) · 1.28 KB
/
knip.jsonc
File metadata and controls
50 lines (50 loc) · 1.28 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
{
"$schema": "https://unpkg.com/knip@next/schema.json",
"workspaces": {
".": {
"entry": [
"src/index.ts",
"src/runtime/eliza.ts",
"src/entry.ts",
"milaidy.mjs",
"scripts/**/*.ts",
"scripts/**/*.mjs",
"scripts/**/*.js"
],
"project": ["src/**/*.ts", "scripts/**/*.ts"],
"ignore": ["dist/**", "build/**", "coverage/**", "**/*.test.ts"]
},
"apps/app": {
"entry": [
"src/main.tsx",
"electron/main.ts",
"electron/preload.ts",
"vite.config.ts",
"vitest.config.ts",
"index.html",
"src/main.tsx",
"electron/main.ts",
"electron/preload.ts",
"vite.config.ts",
"vitest.config.ts",
"index.html",
"capacitor.config.ts"
],
"project": ["src/**/*.{ts,tsx}", "electron/**/*.{ts,tsx}"],
"ignore": [
"dist/**",
"build/**",
"coverage/**",
"**/*.test.ts",
"public/**",
"playwright.electron.config.ts",
"playwright.electron.packaged.config.ts",
"cypress.config.ts",
"**/*.cy.ts",
"**/cypress/**",
"tsdown.config.ts"
]
}
},
"ignore": ["**/*.d.ts", ".eslintrc.js", "**/__tests__/**", "**/__mocks__/**"]
}