We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cf1b2c commit e0917f2Copy full SHA for e0917f2
vite.config.ts
@@ -1,14 +1,11 @@
1
-import { defineConfig } from 'vitest/config'
2
-import tsconfigPaths from 'vite-tsconfig-paths'
+import { defineConfig } from "vitest/config";
+import tsconfigPaths from "vite-tsconfig-paths";
3
import * as path from "node:path";
4
5
export default defineConfig({
6
- plugins: [tsconfigPaths()],
7
- test: {
8
- globals: true,
9
- alias: {
10
- '@serbanghita-gamedev/bitmask/': path.join(__dirname, '../bitmask/'),
11
- '@serbanghita-gamedev/component/': path.join(__dirname, '../component/')
12
- }
13
14
-})
+ plugins: [tsconfigPaths()],
+ test: {
+ globals: true,
+ alias: {},
+ },
+});
0 commit comments