/ knip.json
knip.json
1 { 2 "$schema": "https://unpkg.com/knip@5/schema.json", 3 "workspaces": { 4 ".": { 5 "entry": [ 6 "src/index.ts", 7 "scripts/**/*.js" 8 ], 9 "project": [ 10 "src/**/*.{ts,tsx}", 11 "scripts/**/*.js" 12 ] 13 }, 14 "packages/*": { 15 "entry": [ 16 "src/index.ts", 17 "src/index.tsx" 18 ], 19 "project": [ 20 "src/**/*.{ts,tsx}" 21 ] 22 } 23 }, 24 "ignore": [ 25 "**/dist/**", 26 "**/node_modules/**", 27 "**/*.stories.tsx", 28 "**/vite.config.ts.timestamp-*.mjs" 29 ], 30 "ignoreDependencies": [ 31 "@radix-ui/react-*" 32 ] 33 }