-
Notifications
You must be signed in to change notification settings - Fork 7
/
rollup.config.ts
47 lines (45 loc) · 942 Bytes
/
rollup.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import * as path from 'path'
import { defineConfig } from 'rollup'
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import typescript from '@rollup/plugin-typescript'
import alias from '@rollup/plugin-alias'
export default defineConfig({
input: 'src/index.ts',
plugins: [
alias({
entries: [
{ find: /^@(?=\/)/, replacement: path.resolve(__dirname, 'src') }
]
}),
resolve(),
commonjs(),
typescript({
tsconfig: './tsconfig.json',
declarationDir: './'
})
],
output: [
{
name: 'ESM',
file: 'dist/y-react.mjs',
format: 'es',
sourcemap: true
},
{
name: 'CommonJS',
file: 'dist/y-react.cjs',
format: 'cjs',
exports: 'named',
sourcemap: true
}
],
external: [
'yjs',
'y-indexeddb',
'y-protocols',
'y-webrtc',
'y-websocket',
'react'
]
})