Fixed lazy CLI helper imports for tunnel flows Restored update command version detection Made web test and dead-code commands run reliably
11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
import { fileURLToPath } from 'node:url';
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
'bun:test': fileURLToPath(new URL('./test/bun-test-shim.ts', import.meta.url)),
|
|
},
|
|
},
|
|
});
|