vitest/test/workspaces/space_3/vite.config.ts

13 lines
232 B
TypeScript

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