// vitest and vite wanted devs to add ./node_modules as a type root, but that makes TSC crawl all // type definitions everywhere, just so they could list vite/client or vitest/globals in the types // property. It's really a shoddy setup on their part. This is a workaround to force it to load // the global stuff and just have our type root be more standard as our own types folder. import * as viteClient from 'vite/client'; export { viteClient };