chore: initial baseline with P0-safety .gitignore

This commit is contained in:
Simon
2026-06-14 16:49:18 +08:00
commit 63262292d7
510 changed files with 146008 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
// =============================================================================
// 企微IT智能服务台 — H5用户端环境类型声明
// =============================================================================
// 说明:声明 .vue 文件的模块类型,让 TypeScript 能识别 .vue 文件
// =============================================================================
/// <reference types="vite/client" />
// 声明 .vue 文件模块类型
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}