9 lines
145 B
TypeScript
9 lines
145 B
TypeScript
/// <reference types="vitest" />
|
|
import { defineConfig } from "vitest/config"
|
|
|
|
export default defineConfig({
|
|
build: {
|
|
sourcemap: true,
|
|
},
|
|
})
|