1 Star 0 Fork 0

陈大帅/js-confetti

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rollup.config.js 989 Bytes
一键复制 编辑 原始数据 按行查看 历史
Vladimir Nikitin 提交于 2021-06-25 16:27 . add IIFE dist format
import typescript from 'rollup-plugin-typescript2'
import babel from '@rollup/plugin-babel'
import { terser } from 'rollup-plugin-terser'
export default [
// ES
{
input: 'src/index.ts',
output: {
file: 'dist/es/index.js', format: 'es',
},
plugins: [
typescript(),
babel({
extensions: ['.ts'],
}),
]
},
// UMD
{
input: 'src/index.ts',
output: {
file: 'dist/js-confetti.min.js',
format: 'umd',
name: 'jsConfetti',
indent: false,
},
plugins: [
typescript(),
babel({
extensions: ['.ts'],
exclude: 'node_modules/**',
}),
terser(),
],
},
// IIFE
{
input: 'src/index.ts',
output: {
file: 'dist/js-confetti.browser.js',
format: 'iife',
name: 'JSConfetti',
},
plugins: [
typescript(),
babel({
extensions: ['.ts'],
exclude: 'node_modules/**',
}),
terser(),
],
},
]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/bigflowerfat/js-confetti.git
[email protected]:bigflowerfat/js-confetti.git
bigflowerfat
js-confetti
js-confetti
main

搜索帮助