1 Star 0 Fork 0

Ambit/a-sandbox

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rollup.config.js 923 Bytes
一键复制 编辑 原始数据 按行查看 历史
import pkg from './package.json';
import clear from 'rollup-plugin-clear';
import typescript from '@rollup/plugin-typescript';
import { terser } from 'rollup-plugin-terser';
const banner = `
/**
* ${pkg.name}@${pkg.version}
* ${pkg.description}
* @author ${pkg.author.name} <${pkg.author.email}>
* @license ${pkg.license}
*/`;
export default {
input: 'src/index.ts',
output: [
{
file: 'dist/index.mjs',
format: 'esm',
sourcemap: true,
banner,
},
{
dir: 'dist',
format: 'umd',
name: 'Sandbox',
sourcemap: true,
banner,
},
],
external: ['tslib'],
plugins: [
clear({
targets: ['dist'],
}),
typescript(),
terser({
keep_fnames: /^Function$/,
}),
],
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/ambit/a-sandbox.git
git@gitee.com:ambit/a-sandbox.git
ambit
a-sandbox
a-sandbox
main

搜索帮助