-
Notifications
You must be signed in to change notification settings - Fork 4
/
rollup.config.js
71 lines (67 loc) · 1.6 KB
/
rollup.config.js
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* eslint-env node */
'use strict';
const Typescript = require('typescript');
const commonjsPlugin = require('rollup-plugin-commonjs');
const nodeBuiltinsPlugin = require('rollup-plugin-node-builtins');
const nodeResolvePlugin = require('rollup-plugin-node-resolve');
const typescriptPlugin = require('rollup-plugin-typescript');
const Package = require('./package.json');
module.exports = [
{
experimentalDynamicImport: true,
input: 'src/index.ts',
output: {
file: Package['main'],
format: 'umd',
name: 'PlnkrRuntime',
sourcemap: true
},
plugins: [
nodeResolvePlugin({
jsnext: false,
module: true,
browser: true,
extensions: ['.js', '.json'],
main: true
}),
commonjsPlugin({
include: 'node_modules/**', // Default: undefined
ignoreGlobal: true,
ignore: ['fs']
}),
nodeBuiltinsPlugin(),
typescriptPlugin({
target: 'es5',
typescript: Typescript
})
]
},
{
input: 'src/index.ts',
output: {
file: Package['module'],
format: 'esm',
name: 'PlnkrRuntime',
sourcemap: true
},
plugins: [
nodeResolvePlugin({
jsnext: false,
module: true,
browser: true,
extensions: ['.js', '.json'],
main: true
}),
commonjsPlugin({
include: 'node_modules/**', // Default: undefined
ignoreGlobal: true,
ignore: ['fs']
}),
nodeBuiltinsPlugin(),
typescriptPlugin({
target: 'es2018',
typescript: Typescript
})
]
}
];