UNPKG

293 BJavaScriptView Raw
1import json from 'rollup-plugin-json';
2import commonjs from 'rollup-plugin-commonjs';
3import nodeResolve from 'rollup-plugin-node-resolve';
4
5export default ({
6 entry: 'src/index.js',
7 external: ['three'],
8 globals: ['three:THREE'],
9 plugins: [json(), nodeResolve(), commonjs()]
10});
\No newline at end of file