mirror of
https://github.com/Kong/insomnia.git
synced 2026-08-04 11:52:33 -04:00
Move insomnia-data models, services, database code, and common utilities into a dedicated workspace package. Update consumers to import from the new package entrypoints and declare workspace dependencies for the extracted package.
11 lines
211 B
TypeScript
11 lines
211 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
hideSkippedTests: true,
|
|
alias: {
|
|
'~/': new URL('../insomnia/src/', import.meta.url).pathname,
|
|
},
|
|
},
|
|
});
|