Implement path loading

Got the build working

Maybe actually fix builds

Copy drizzle as well
This commit is contained in:
Erik Parawell
2025-07-11 18:49:43 -07:00
committed by Aarnav Tale
parent 7691f74d43
commit 5cfd9e411b
12 changed files with 1021 additions and 61 deletions
+16
View 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'),
},
},
});