-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknip.json
More file actions
52 lines (44 loc) · 1.01 KB
/
knip.json
File metadata and controls
52 lines (44 loc) · 1.01 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
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"entry": [
"packages/number-picker/src/index.ts",
"packages/number-picker/src/picker/index.ts",
"packages/number-picker/src/quick/index.ts",
"packages/number-picker/src/wheel/index.ts",
"demo/src/main.tsx"
],
"project": [
"packages/**/*.{ts,tsx}",
"demo/**/*.{ts,tsx}"
],
"ignore": [
"**/__tests__/**",
"**/*.test.{ts,tsx}",
"**/*.spec.{ts,tsx}",
"**/dist/**",
"**/build/**",
"**/coverage/**",
"**/.turbo/**",
"**/node_modules/**"
],
"ignoreDependencies": [
// Peer dependencies that aren't directly imported
"@xstate/react",
"lucide-react",
// Dev tools
"vitest",
"@vitest/ui",
"@testing-library/react",
"@testing-library/jest-dom",
"@testing-library/user-event",
"happy-dom",
"jsdom"
],
"ignoreExportsUsedInFile": true,
"oxlint": {
"config": ".oxlintrc.json"
},
"vitest": {
"config": ["packages/number-picker/vitest.config.ts"]
}
}