feat init

This commit is contained in:
Ironsp
2026-08-21 11:02:07 +08:00
commit 27c5275d83
44 changed files with 15187 additions and 0 deletions

14
vitest.config.ts Normal file
View File

@@ -0,0 +1,14 @@
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
environment: 'uniapp',
environmentOptions: {
uniapp: {
platform: 'mp-weixin',
projectPath: './src',
port: 5121,
},
},
},
})