knip.json 649 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "$schema": "https://unpkg.com/knip@latest/schema.json",
  3. "entry": ["src/extension.ts", "src/activate/index.ts", "webview-ui/src/index.tsx"],
  4. "project": ["src/**/*.ts", "webview-ui/src/**/*.{ts,tsx}"],
  5. "ignore": [
  6. "**/__mocks__/**",
  7. "**/__tests__/**",
  8. "**/test/**",
  9. "**/*.test.ts",
  10. "**/*.test.tsx",
  11. "**/stories/**",
  12. "coverage/**",
  13. "dist/**",
  14. "out/**",
  15. "bin/**",
  16. "e2e/**",
  17. "evals/**",
  18. "src/activate/**",
  19. "src/exports/**",
  20. "src/workers/**",
  21. "src/schemas/ipc.ts",
  22. "src/extension.ts",
  23. "scripts/**"
  24. ],
  25. "workspaces": {
  26. "webview-ui": {
  27. "entry": ["src/index.tsx"],
  28. "project": ["src/**/*.{ts,tsx}"]
  29. }
  30. }
  31. }