diff --git a/auto-imports.d.ts b/auto-imports.d.ts index 5e4632f..b5f3cd1 100644 --- a/auto-imports.d.ts +++ b/auto-imports.d.ts @@ -3,7 +3,6 @@ // @ts-nocheck // noinspection JSUnusedGlobalSymbols // Generated by unplugin-auto-import -// biome-ignore lint: disable export {} declare global { const EffectScope: typeof import('vue')['EffectScope'] @@ -304,6 +303,6 @@ declare global { // for type re-export declare global { // @ts-ignore - export type { Component, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue' + export type { Component, ComponentPublicInstance, ComputedRef, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, VNode, WritableComputedRef } from 'vue' import('vue') } diff --git a/package.json b/package.json index 006426e..28ebbce 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "version": "0.0.0", "type": "module", "scripts": { + "start:dev": "concurrently \"npm run dev\" \"cd backend && npm run start\"", "dev": "vite", "build": "vue-tsc -b && vite build", "preview": "vite preview", @@ -27,6 +28,7 @@ "@arco-design/web-vue": "^2.56.0", "@types/node": "^22.9.0", "@vitejs/plugin-vue": "^5.0.5", + "concurrently": "^9.1.0", "less": "^4.2.0", "rollup-plugin-visualizer": "^5.12.0", "sass": "^1.77.8",