Implement path loading
Got the build working Maybe actually fix builds Copy drizzle as well
This commit is contained in:
parent
7691f74d43
commit
5cfd9e411b
12 changed files with 1021 additions and 61 deletions
16
vitest.config.ts
Normal file
16
vitest.config.ts
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import { resolve } from 'node:path';
|
||||
import { defineConfig } from 'vitest/config';
|
||||
|
||||
export default defineConfig({
|
||||
test: {
|
||||
environment: 'node',
|
||||
include: ['tests/**/*.test.js'],
|
||||
exclude: ['node_modules/**', 'build/**'],
|
||||
setupFiles: ['./tests/setupOverlayFs.js'],
|
||||
},
|
||||
resolve: {
|
||||
alias: {
|
||||
'~': resolve(__dirname, './app'),
|
||||
},
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue