-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup! Update minor dependencies and major with no changes needed
- Loading branch information
1 parent
6a14663
commit d5243f0
Showing
3 changed files
with
20 additions
and
14 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { defineConfig } from "vite"; | ||
import { sveltekit } from "@sveltejs/kit/vite"; | ||
|
||
export default defineConfig({ | ||
plugins: [sveltekit()], | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { defineConfig, mergeConfig } from "vitest/config"; | ||
import viteConfig from "./vite.config"; | ||
|
||
export default mergeConfig( | ||
viteConfig, | ||
defineConfig({ | ||
test: { | ||
include: ["src/**/*.{test,spec}.{js,ts}"], | ||
globals: true, | ||
environment: "jsdom", | ||
setupFiles: "./src/setupTests.ts", | ||
}, | ||
}), | ||
); |