setup stores and vitest

This commit is contained in:
Michael Dausmann
2023-11-28 00:28:19 +11:00
parent 7e46acf449
commit d8f20d9896
9 changed files with 1436 additions and 211 deletions

14
vitest.config.ts Normal file
View File

@@ -0,0 +1,14 @@
import path from 'path';
import { fileURLToPath } from 'url';
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
// ... Specify options here.
},
resolve: {
alias: {
'~~': fileURLToPath(new URL('./', import.meta.url))
}
}
});