/** * @copyright Sister Software * @license AGPL-3.0 * @author Teffen Ellis, et al. * * Per-package vitest config that resolves @mailwoman/core subpath imports to source. The * package.json `exports` field points at `./out/.../index.js` — those files don't exist until tsc * has run. With these aliases vitest can run from a clean checkout. * * A few subpaths are single files, not directories with an `index.ts` — `fs` is the node build * (`fs/node.ts`), `objects` is a bare file (`objects.ts`), `coarse-placer`/`kysley/*` are single * files. Those get explicit entries BEFORE the generic `/index.ts` rule, * which would otherwise resolve them to a non-existent `index.ts` (mirrors the root config). */ declare const _default: import("vite").UserConfig; export default _default; //# sourceMappingURL=vitest.config.d.ts.map