1 Star 0 Fork 2

星际逍遥 / three.interaction.js

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
rollup.config.js 506 Bytes
一键复制 编辑 原始数据 按行查看 历史
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/**' ],
},
};
JavaScript
1
https://gitee.com/xiaoxufa/three.interaction.js.git
git@gitee.com:xiaoxufa/three.interaction.js.git
xiaoxufa
three.interaction.js
three.interaction.js
master

搜索帮助