knip.json 585 B

123456789101112131415161718192021222324252627
  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. "src/activate/**",
  17. "src/exports/**",
  18. "src/extension.ts",
  19. ".vscode-test.mjs"
  20. ],
  21. "workspaces": {
  22. "webview-ui": {
  23. "entry": ["src/index.tsx"],
  24. "project": ["src/**/*.{ts,tsx}"]
  25. }
  26. }
  27. }