vitest/test/workspaces/space_3/vite.config.ts
Vladimir 41beb261e6
feat: deprecate workspace in favor of projects (#7923)
Co-authored-by: Ari Perkkiö <ari.perkkio@gmail.com>
2025-05-05 18:49:26 +02:00

13 lines
227 B
TypeScript

import { defineConfig } from 'vite'
export default defineConfig({
plugins: [
{
name: 'throw-error',
config() {
throw new Error('This file should not initiate a test project.')
},
},
],
})