| 4 | import { defineConfig } from "vite"; |
| 5 | |
| 6 | interface DesktopPackageJson { |
| 7 | version?: unknown; |
| 8 | } |
| 9 | |
| 10 | function clearStaleOptimizeCache(rootDir: string): void { |
| 11 | const cacheDir = path.resolve(rootDir, "node_modules/.vite"); |
nothing calls this directly
no outgoing calls
no test coverage detected