1 Star 1 Fork 0

mirrors_gis/three.interaction.js

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
rollup.config.js 506 Bytes
一键复制 编辑 原始数据 按行查看 历史
jasonChen1982 提交于 2018-09-03 17:02 +08:00 . chore(script): adjust output dir to ./build
import babel from 'rollup-plugin-babel';
export default {
input: 'src/index.js',
sourcemap: true,
output: [
{
format: 'umd',
name: 'THREE',
file: 'build/three.interaction.js',
},
{
format: 'es',
file: 'build/three.interaction.module.js',
},
],
plugins: [
babel({
exclude: 'node_modules/**',
}),
],
extend: true,
external: [ 'three' ],
globals: {
three: 'THREE',
},
watch: {
exclude: [ 'node_modules/**' ],
},
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors-gis/three.interaction.js.git
git@gitee.com:mirrors-gis/three.interaction.js.git
mirrors-gis
three.interaction.js
three.interaction.js
master

搜索帮助