fix(ui): add vitest.config.ts to prevent loading vite.config.ts with TypeScript 7 incompatible dts plugin

This commit is contained in:
copilot-swe-agent[bot]
2026-07-17 23:40:55 +00:00
committed by GitHub
parent 56cfc31e0f
commit 65d251a2bf

View File

@@ -0,0 +1,8 @@
import { defineProject } from "vitest/config";
export default defineProject({
test: {
name: "@meshtastic/ui",
include: [],
},
});