mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-25 07:00:48 +09:00
feat: initialize project structure
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import { defineConfig } from 'vitest/config'
|
||||
import dotenv from 'dotenv'
|
||||
|
||||
dotenv.config()
|
||||
|
||||
export default defineConfig({
|
||||
test: {
|
||||
globals: true,
|
||||
include: [
|
||||
'packages/**/*.test.ts',
|
||||
],
|
||||
env: process.env,
|
||||
testTimeout: Infinity,
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user