oc-template-preact-compiler
Version:
Compiler for the Preact OC template
14 lines (12 loc) • 324 B
text/typescript
import { defineConfig } from 'vite';
// https://vitejs.dev/config/
export default defineConfig({
// Add your own plugins here for thinkgs like eslint or typecheckers
plugins: [],
// @ts-ignore Missing test property
test: {
environment: 'jsdom',
globals: true,
setupFiles: ['src/setupTests.js'],
}
});