UNPKG

weapp-vite

Version:

weapp-vite 一个现代化的小程序打包工具

19 lines (16 loc) 415 B
/// <reference types="vite/client" /> type MP_PLATFORM = 'weapp' | 'alipay' | 'tt' interface ImportMetaEnv { MP_PLATFORM: MP_PLATFORM // | 'swan' | 'alipay' | 'tt' | 'qq' | 'jd' | 'h5' } // MP_PLATFORM // weapp / swan / alipay / tt / qq / jd / h5 declare module 'process' { global { namespace NodeJS { interface ProcessEnv extends Dict<string> { MP_PLATFORM: MP_PLATFORM } } } }