Files
yjs/rollup.config.js

15 lines
289 B
JavaScript
Raw Normal View History

2018-11-25 03:17:00 +01:00
export default [{
input: {
yjs: './src/index.js',
testHelper: './tests/testHelper.js',
internals: './src/internals.js'
},
2021-11-06 15:55:59 +01:00
output: {
dir: 'dist',
2021-11-06 15:55:59 +01:00
format: 'esm',
2025-12-15 13:27:07 +01:00
entryFileNames: '[name].js',
2020-01-13 07:41:31 +01:00
sourcemap: true
},
2025-05-01 15:26:26 +02:00
external: id => /^(lib0|@y)\//.test(id)
2019-04-23 20:51:32 +02:00
}]