1 Star 0 Fork 1

yzhu / jsnes

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
rollup.config.js 368 Bytes
一键复制 编辑 原始数据 按行查看 历史
yzhu 提交于 2022-04-08 01:06 . [fix] mocha
import commonjs from '@rollup/plugin-commonjs'
import resolve from '@rollup/plugin-node-resolve'
export default {
input: 'src/index.js',
output: {
file: 'dist/jsnes.js',
format: 'esm'
},
plugins: [
resolve({
// browser: true,
extensions: ['.mjs', '.js', '.json', '.node', '.jsx']
}),
commonjs({ include: 'node_modules/**', sourceMap: true }),
]
}
JavaScript
1
https://gitee.com/891085309/jsnes.git
git@gitee.com:891085309/jsnes.git
891085309
jsnes
jsnes
master

搜索帮助