chore: 升级 monorepo 架构

This commit is contained in:
就眠儀式
2022-04-05 10:31:31 +08:00
parent 436fd407ca
commit c7f8998376
659 changed files with 13598 additions and 1039 deletions

25
package/document/shims-vue.d.ts vendored Normal file
View File

@@ -0,0 +1,25 @@
declare module "*.vue" {
import { DefineComponent } from "vue";
const comp: DefineComponent;
export default comp;
}
declare module "*.md" {
import { DefineComponent } from "vue";
const comp: DefineComponent;
export default comp;
}
declare module "prismjs";
declare module "prismjs/components/index";
declare module "escape-html";
interface ImportMeta {
env: {
MODE: string;
BASE_URL: string;
PROD: boolean;
DEV: boolean;
SSR: boolean;
};
}