fdefca030e
Co-authored-by: Riley Tomasek <riley.tomasek@gmail.com>
14 lines
200 B
TypeScript
14 lines
200 B
TypeScript
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig(() => {
|
|
return {
|
|
mode: 'test',
|
|
|
|
test: {
|
|
environment: 'node',
|
|
globals: true,
|
|
watch: false,
|
|
},
|
|
};
|
|
});
|