-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknip.json
More file actions
104 lines (104 loc) · 2.24 KB
/
Copy pathknip.json
File metadata and controls
104 lines (104 loc) · 2.24 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
95
96
97
98
99
100
101
102
103
104
{
"$schema": "./node_modules/knip/schema.json",
"include": ["files", "exports"],
"ignoreExportsUsedInFile": true,
"ignoreFiles": [
"docs/**",
"e2e-components-test/**",
"e2e-shadcn-components-test/**",
"registry/**",
"utils/cn.ts",
"apps/www/components/ui/**",
"apps/www/config/components.ts",
"apps/www/config/demos.tsx",
"apps/www/config/docs-scenarios.ts",
"apps/www/public/r/**",
"apps/www/public/registry/**"
],
"workspaces": {
".": {
"entry": [
"scripts/**/*.mjs",
"scripts/**/*.ts"
],
"project": [
"scripts/**/*.{mjs,ts}",
"utils/**/*.ts"
]
},
"apps/www": {
"entry": [
"app/**/*.{ts,tsx}",
"components/**/*.{ts,tsx}",
"config/**/*.{ts,tsx}",
"contexts/**/*.{ts,tsx}",
"lib/**/*.{ts,tsx}",
"templates/**/*.{ts,tsx}",
"tests/**/*.{ts,tsx}",
"next.config.ts",
"vitest.config.ts",
"public/theme-init.js"
],
"project": [
"app/**/*.{ts,tsx}",
"components/**/*.{ts,tsx}",
"config/**/*.{ts,tsx}",
"contexts/**/*.{ts,tsx}",
"lib/**/*.{ts,tsx}",
"templates/**/*.{ts,tsx}",
"tests/**/*.{ts,tsx}",
"next.config.ts",
"eslint.config.mjs",
"postcss.config.mjs",
"vitest.config.ts",
"public/theme-init.js"
],
"ignore": [
".next/**",
"components/ui/**",
"config/components.ts",
"config/demos.tsx",
"config/docs-scenarios.ts",
"public/r/**",
"public/registry/**"
]
},
"packages/cli": {
"entry": [
"src/index.ts",
"tsup.config.ts"
],
"project": [
"src/**/*.ts"
],
"ignore": [
"dist/**"
]
},
"packages/cli-core": {
"entry": [
"src/index.ts",
"src/debug.ts",
"src/**/*.test.ts"
],
"project": [
"src/**/*.ts"
],
"ignore": [
"dist/**"
]
},
"packages/registry-schema": {
"entry": [
"src/index.ts",
"src/**/*.test.ts"
],
"project": [
"src/**/*.ts"
],
"ignore": [
"dist/**"
]
}
}
}