-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknip.json
More file actions
43 lines (43 loc) · 1.05 KB
/
Copy pathknip.json
File metadata and controls
43 lines (43 loc) · 1.05 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
{
"$schema": "https://unpkg.com/knip@6/schema.json",
"entry": [
"src/app/**/*.{ts,tsx}",
"src/**/*.test.{ts,tsx}",
"src/**/__tests__/**/*.{ts,tsx}",
"__tests__/**/*.{ts,tsx}",
"agent-edge.mjs",
"worker.mjs",
"scripts/*.mjs",
"next.config.ts",
"open-next.config.ts",
"postcss.config.mjs",
"vitest.config.ts"
],
"project": [
"src/**/*.{ts,tsx}",
"scripts/*.mjs",
"*.config.{ts,mjs}",
"agent-edge.mjs",
"worker.mjs"
],
"ignore": ["open-next.config.ts"],
"ignoreDependencies": [
"@mozilla/readability",
"@sparticuz/chromium",
"jscpd",
"mammoth",
"pdf-parse",
"puppeteer-core"
],
"workspaces": {
"extension": {
"entry": ["src/background.ts", "src/content.ts", "src/popup.ts", "scripts/*.mjs"],
"project": ["src/**/*.ts", "scripts/*.mjs"]
},
"landing-astro": {
"entry": ["src/pages/**/*.astro", "astro.config.mjs"],
"project": ["src/**/*.{astro,ts}", "astro.config.mjs"],
"ignoreDependencies": ["lightningcss", "tailwindcss"]
}
}
}