plugin-platform-tb
v0.0.5
Published
淘宝小程序平台插件
Readme
plugin-platform-tb
Taro 插件。用于支持编译为淘宝小程序
// Taro 项目配置 module.exports = { // ... plugins: ['plugin-platform-tb'], };
// package.json 编译 taro build --type tb taro build --type tb --watch
// 平台判断 if (process.TARO_ENV === 'tb') { // ... }
// 开发者在 global.d.ts 中加入
/// <reference types="plugin-platform-tb/types/shims-alipay" /> 即可获得类型提示。
TARO_ENV: 'weapp' | 'swan' | 'alipay' | 'h5' | 'rn' | 'tt' | 'qq' | 'jd' | 'harmony' | 'jdrn' 后新增 TARO_ENV: 'tb' 例如: TARO_ENV: 'weapp' | 'swan' | 'alipay' | 'h5' | 'rn' | 'tt' | 'qq' | 'jd' | 'harmony' | 'jdrn' | 'tb'
