-
Notifications
You must be signed in to change notification settings - Fork 22
/
rollup.config.js
43 lines (42 loc) · 971 Bytes
/
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
// rollup.config.js
import typescript from '@rollup/plugin-typescript';
import commonjs from '@rollup/plugin-commonjs';
import json from '@rollup/plugin-json';
import { nodeResolve } from '@rollup/plugin-node-resolve';
export default {
input: {
'extension': 'src/extension.ts',
'thread': 'node_modules/hasha/thread.js',
} ,
output: {
dir: 'dist',
format: 'cjs',
sourcemap: true,
},
external: [
'@podman-desktop/api',
'node:stream',
'node:http',
'node:url',
'node:process',
'node:tls',
'node:util',
'node:buffer',
'node:https',
'node:events',
'node:net',
'node:process',
'node:path',
'node:os',
'node:fs',
'node:child_process',
'node:crypto',
'node:worker_threads',
],
plugins: [
typescript({ noEmitOnError: true }),
commonjs({ extensions: ['.js', '.ts'] }), // the ".ts" extension is required],
json(),
nodeResolve({preferBuiltins: true}),
],
};