refactor: 拆分小程序 vue 结构

This commit is contained in:
2026-03-11 14:11:26 +08:00
commit b050c01a24
141 changed files with 24904 additions and 0 deletions

34
types/vendor-stubs.d.ts vendored Normal file
View File

@@ -0,0 +1,34 @@
declare module 'react' {
const React: any
export = React
export as namespace React
}
declare module 'react-native' {
const ReactNative: any
export = ReactNative
}
declare module 'webpack-dev-server' {
const WebpackDevServer: any
export default WebpackDevServer
}
declare module 'html-webpack-plugin' {
const HtmlWebpackPlugin: any
export default HtmlWebpackPlugin
}
declare module 'webpack-chain' {
const Config: any
export default Config
}
type CommonEventFunction<T = any> = (event: T) => void
declare const Input: any
declare const taroResolver: any
declare const styleTransformer: any
type ViteConfig = any
type WebpackConfig = any