1 Star 2 Fork 0

AI麥爾/node-little-db

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rollup.config.mjs 691 Bytes
一键复制 编辑 原始数据 按行查看 历史
AI麥爾 提交于 2023-08-26 15:50 +08:00 . 🎈 perf: 更改rollup配置文件的后缀名
import typescript from '@rollup/plugin-typescript'
import clear from 'rollup-plugin-clear'
export default [
{
input: 'src/index.ts',
output: [
{
file: 'dist/index.mjs',
format: 'es',
compact: true,
},
],
plugins: [
typescript({ declaration: true }),
clear({ targets: ['dist'] }),
],
},
{
input: 'src/index.ts',
output: [
{
file: 'dist/index.js',
format: 'cjs',
compact: true,
},
],
plugins: [typescript({ declaration: false })],
},
]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/aimaier4869/little-db.git
git@gitee.com:aimaier4869/little-db.git
aimaier4869
little-db
node-little-db
master

搜索帮助