mirror of
https://gitee.com/bootx/dax-pay-h5
synced 2026-08-07 21:55:48 +08:00
- 移除 @oxc-parser/binding-win32-x64-msvc 平台锁定(改由 pnpm 自动解析) - eslint 8→9, @antfu/eslint-config 2→9, eslint-plugin-format 升级 - commitlint 18→19, @types/node 25→24 对齐运行时 Node v24 - rimraf 3→6 - 适配 @antfu9 新规则: 空对象/Function 类型/空 catch/正则捕获组 - lint:fix 统一新风格(引号/分号等自动格式化)
9 lines
225 B
TypeScript
9 lines
225 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue'
|
|
|
|
const Component: DefineComponent<Record<string, never>, Record<string, never>, any>
|
|
export default Component
|
|
}
|