update packages and add valign
This commit is contained in:
17
scripts/reveal.js/react/vitest.config.ts
Normal file
17
scripts/reveal.js/react/vitest.config.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { resolve } from 'path';
|
||||
import { defineConfig } from 'vitest/config';
|
||||
import react from '@vitejs/plugin-react';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
resolve: {
|
||||
alias: {
|
||||
'reveal.js': resolve(__dirname, '../js/index.ts'),
|
||||
},
|
||||
},
|
||||
test: {
|
||||
environment: 'jsdom',
|
||||
globals: true,
|
||||
setupFiles: ['./src/__tests__/setup.ts'],
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user