-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsup.config.ts
47 lines (45 loc) · 984 Bytes
/
tsup.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 { defineConfig } from 'tsup'
export default defineConfig([
{
entry: ['src/index.ts'],
sourcemap: true,
platform: 'neutral',
minify: true,
outDir: 'lib',
format: ['esm', 'cjs'],
dts: true,
clean: true,
shims: true,
},
{
entry: ['src/index.ts'],
globalName: 'orion',
sourcemap: true,
platform: 'browser',
minify: true,
outDir: 'lib',
format: 'iife',
dts: true,
clean: true,
shims: true,
// Suppress all 'node:' imports
esbuildPlugins: [
{
name: 'resolve-node-polyfill',
setup(build) {
build.onResolve({ filter: /^node:/ }, (args) => {
return {
path: args.path,
namespace: 'node-polyfill',
}
})
build.onLoad({ filter: /.*/, namespace: 'node-polyfill' }, (args) => {
return {
contents: 'undefined',
}
})
},
},
],
}
])