1 Star 0 Fork 4

jamibee/twtree

forked from Gitee 极速下载/twtree 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rollup.config.js 680 Bytes
一键复制 编辑 原始数据 按行查看 历史
import commonjs from '@rollup/plugin-commonjs'; // Convert CommonJS modules to ES6
import vue from 'rollup-plugin-vue'; // Handle .vue SFC files
import buble from '@rollup/plugin-buble'; // Transpile/polyfill with reasonable browser support
export default {
input: 'src/publish.js', // Path relative to package.json
output: {
name: 'twtree',
exports: 'named',
},
plugins: [
vue({
css: true, // Dynamically inject css as a <style> tag
compileTemplate: true, // Explicitly convert template to render function
}),
buble({transforms: { forOf: false }}), // Transpile to ES5
commonjs(),
],
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/jamibee/twtree.git
git@gitee.com:jamibee/twtree.git
jamibee
twtree
twtree
master

搜索帮助