mirror of
https://github.com/yjs/yjs.git
synced 2026-02-23 19:49:59 +01:00
17 lines
306 B
JavaScript
17 lines
306 B
JavaScript
// @todo remove
|
|
|
|
export default [{
|
|
input: {
|
|
yjs: './src/index.js',
|
|
testHelper: './tests/testHelper.js',
|
|
internals: './src/internals.js'
|
|
},
|
|
output: {
|
|
dir: 'dist',
|
|
format: 'esm',
|
|
entryFileNames: '[name].js',
|
|
sourcemap: true
|
|
},
|
|
external: id => /^(lib0|@y)\//.test(id)
|
|
}]
|