mirror of
https://github.com/yjs/yjs.git
synced 2025-12-16 11:47:46 +01:00
15 lines
289 B
JavaScript
15 lines
289 B
JavaScript
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)
|
|
}]
|