1 Star 1 Fork 0

star/react-particles-webgl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rollup.config.js 783 Bytes
一键复制 编辑 原始数据 按行查看 历史
Tim Ellenberger 提交于 2019-06-12 06:42 . :arrow_up:rollup-plugin-commonjs@10.0.0
import path from 'path';
import babel from 'rollup-plugin-babel';
import commonjs from 'rollup-plugin-commonjs';
import filesize from 'rollup-plugin-filesize';
import resolve from 'rollup-plugin-node-resolve';
import pkg from './package.json';
const root = process.platform === 'win32' ? path.resolve('/') : '/';
export default {
input: './src/index.js',
output: [
{
file: pkg.main,
format: 'cjs',
sourcemap: true
},
{
file: pkg.module,
format: 'es',
sourcemap: true
}
],
external: id => !id.startsWith('.') && !id.startsWith(root),
plugins: [
babel({
exclude: 'node_modules/**',
runtimeHelpers: true
}),
resolve(),
commonjs({
include: 'node_modules/**'
}),
filesize()
]
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hkx123456/react-particles-webgl.git
git@gitee.com:hkx123456/react-particles-webgl.git
hkx123456
react-particles-webgl
react-particles-webgl
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385