feat(runtime): establish miniapp kernel and sdk design

This commit is contained in:
2026-08-05 00:46:16 +08:00
parent d8aa087bc8
commit 9fb8cd1598
86 changed files with 4615 additions and 1364 deletions
+13
View File
@@ -0,0 +1,13 @@
import { defineConfig } from "vite";
/**
* Keep Vite, Vitest and TypeScript on the same source-root import contract.
* Module boundaries may evolve without introducing fragile ../../ imports.
*/
export default defineConfig({
resolve: {
alias: {
"@": "/src",
},
},
});