[READ-ONLY] Mirror of https://github.com/danielroe/cross-origin-storage. Load shared dependencies from Cross-Origin Storage (COS).
cross-origin-storage
experimental
nuxt
vite
vite-plugin
1import { defineConfig } from 'vitest/config'
2
3export default defineConfig({
4 test: {
5 globalSetup: ['./test/global-setup.ts'],
6 testTimeout: 30_000,
7 hookTimeout: 240_000,
8 // The fixture is built into shared `.output` / `.nuxt` dirs; running test
9 // files in parallel makes their builds clobber each other.
10 fileParallelism: false,
11 typecheck: {
12 include: ['test/**/*.test-d.ts'],
13 tsconfig: './tsconfig.json',
14 },
15 },
16})