knip.json 629 B

123456789101112131415161718192021222324252627282930
  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/schemas/ipc.ts",
  21. "src/extension.ts",
  22. "scripts/**"
  23. ],
  24. "workspaces": {
  25. "webview-ui": {
  26. "entry": ["src/index.tsx"],
  27. "project": ["src/**/*.{ts,tsx}"]
  28. }
  29. }
  30. }