mirror of
https://github.com/tale/headplane.git
synced 2026-07-26 15:58:14 +00:00
5cfd9e411b
Got the build working Maybe actually fix builds Copy drizzle as well
17 lines
347 B
TypeScript
17 lines
347 B
TypeScript
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'),
|
|
},
|
|
},
|
|
});
|