chore: add tonal + vitest

This commit is contained in:
2026-04-09 00:28:19 +02:00
parent bb99f5964a
commit aeb9dfff67
3 changed files with 9353 additions and 2 deletions

13
app/vitest.config.ts Normal file
View File

@@ -0,0 +1,13 @@
import { defineConfig } from 'vitest/config';
import { resolve } from 'path';
export default defineConfig({
test: {
environment: 'node',
},
resolve: {
alias: {
'~': resolve(__dirname, './app'),
},
},
});