initial: server + shared

This commit is contained in:
admin
2026-06-11 13:41:38 +05:00
commit 65da047e7c
148 changed files with 15900 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import path from 'node:path'
import { defineConfig } from 'vitest/config'
const projectRoot = path.resolve(__dirname, '..')
export default defineConfig({
resolve: {
alias: {
'@shared': path.resolve(projectRoot, 'shared'),
},
},
server: {
fs: {
allow: [projectRoot],
},
},
})