| 12345678910111213141516171819202122232425262728293031 |
- {
- "$schema": "https://unpkg.com/knip@latest/schema.json",
- "entry": ["src/extension.ts", "src/activate/index.ts", "webview-ui/src/index.tsx"],
- "project": ["src/**/*.ts", "webview-ui/src/**/*.{ts,tsx}"],
- "ignore": [
- "**/__mocks__/**",
- "**/__tests__/**",
- "**/test/**",
- "**/*.test.ts",
- "**/*.test.tsx",
- "**/stories/**",
- "coverage/**",
- "dist/**",
- "out/**",
- "bin/**",
- "e2e/**",
- "evals/**",
- "src/activate/**",
- "src/exports/**",
- "src/workers/**",
- "src/schemas/ipc.ts",
- "src/extension.ts",
- "scripts/**"
- ],
- "workspaces": {
- "webview-ui": {
- "entry": ["src/index.tsx"],
- "project": ["src/**/*.{ts,tsx}"]
- }
- }
- }
|