UNPKG

holoplay

Version:

A library for the Looking Glass 3D display that relies on three.js to show content in true 3D from the browser.

23 lines (20 loc) 381 B
import resolve from '@rollup/plugin-node-resolve'; export default [ { input: 'src/holoplay.js', output: { file: 'dist/holoplay.js', format: 'umd', name: 'HoloPlay', }, plugins: [resolve()], }, { input: 'src/holoplay.js', output: { file: 'dist/holoplay.module.js', format: 'esm', }, plugins: [resolve()], }, ]