mirror of
https://github.com/hoppscotch/hoppscotch
synced 2024-11-22 15:18:35 +00:00
15 lines
290 B
TypeScript
15 lines
290 B
TypeScript
|
import { defineConfig } from "vitest/config"
|
||
|
import * as path from "path"
|
||
|
|
||
|
export default defineConfig({
|
||
|
test: {
|
||
|
environment: "jsdom",
|
||
|
setupFiles: "./src/setupTests.ts",
|
||
|
},
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
"~": path.resolve(__dirname, "../hoppscotch-common/src"),
|
||
|
},
|
||
|
},
|
||
|
})
|