mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
* fix: always apply vite ssr source maps * chore: remove non-vite-node source maps from code * test: source map test * chore: force esbuild to not generate inline source map * chore: fix failing text
11 lines
159 B
TypeScript
11 lines
159 B
TypeScript
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig({
|
|
esbuild: {
|
|
sourcemap: 'both',
|
|
},
|
|
test: {
|
|
include: ['test/*.test.ts'],
|
|
},
|
|
})
|