deliver Hongfa Laundry M1 desktop release

This commit is contained in:
manpengan
2026-04-23 16:50:24 +08:00
parent 20595a7545
commit 7deea00495
66 changed files with 19586 additions and 69 deletions

16
vitest.config.ts Normal file
View File

@@ -0,0 +1,16 @@
import { defineConfig } from "vitest/config";
import { resolve } from "path";
export default defineConfig({
test: {
globals: true,
environment: "node",
include: ["tests/unit/**/*.{test,spec}.ts"],
},
resolve: {
alias: {
"@main": resolve(__dirname, "./src/main"),
"@shared": resolve(__dirname, "./src/shared"),
},
},
});