Files
STIXMODELER_UI/stix-modeler-app/vite.config.js
2025-10-14 09:45:57 -04:00

39 lines
760 B
JavaScript

/// <reference types="vitest/config" />
import { defineConfig, transformWithEsbuild } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [
{
name: 'treat-js-files-as-jsx',
async transform(code, id) {
if (!id.match(/src\/.*\.js$/)) return null;
// Use the exposed transform from vite, instead of directly
// transforming with esbuild
return transformWithEsbuild(code, id, {
loader: 'jsx',
jsx: 'automatic',
});
},
},
react()
],
test: {
globals: true,
environment: "jsdom",
// ...
},
optimizeDeps: {
force: true,
esbuildOptions: {
loader: {
'.js': 'jsx',
},
},
},
});