Skip to content

Commit e0917f2

Browse files
committed
No need for paths
1 parent 0cf1b2c commit e0917f2

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

vite.config.ts

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
1-
import { defineConfig } from 'vitest/config'
2-
import tsconfigPaths from 'vite-tsconfig-paths'
1+
import { defineConfig } from "vitest/config";
2+
import tsconfigPaths from "vite-tsconfig-paths";
33
import * as path from "node:path";
44

55
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-
})
6+
plugins: [tsconfigPaths()],
7+
test: {
8+
globals: true,
9+
alias: {},
10+
},
11+
});

0 commit comments

Comments
 (0)