chore: update moduleResolution to bundler and add vitest configuration

This commit is contained in:
2025-12-11 01:08:55 +07:00
parent 22f706a53e
commit d860cdbd05
4 changed files with 10 additions and 6 deletions

8
vitest.config.ts Normal file
View File

@@ -0,0 +1,8 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
environment: "jsdom",
},
});