-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtsup.config.ts
More file actions
88 lines (84 loc) · 1.41 KB
/
tsup.config.ts
File metadata and controls
88 lines (84 loc) · 1.41 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import { defineConfig, Options } from 'tsup';
const baseConfig: Options = {
dts: true,
sourcemap: true,
clean: true,
treeshake: true,
splitting: false,
};
const nodeConfig: Options = {
...baseConfig,
platform: 'node',
target: 'es2022',
format: ['cjs', 'esm'],
outDir: 'dist',
outExtension({ format }) {
return {
js: format === 'cjs' ? '.cjs' : '.mjs',
};
},
};
const browserConfig: Options = {
...baseConfig,
platform: 'browser',
target: 'es2020',
globalName: 'jmespath',
};
export default defineConfig([
// Library builds
{
...nodeConfig,
entry: ['src/index.ts'],
},
{
...browserConfig,
entry: ['src/index.ts'],
format: ['esm'],
outExtension() {
return {
js: '.esm.js',
};
},
},
{
...browserConfig,
entry: ['src/index.ts'],
format: ['esm'],
minify: true,
outExtension() {
return {
js: '.esm.min.js',
};
},
},
{
...browserConfig,
entry: ['src/index.ts'],
format: ['iife'],
outExtension() {
return {
js: '.umd.js',
};
},
},
{
...browserConfig,
entry: ['src/index.ts'],
format: ['iife'],
minify: true,
outExtension() {
return {
js: '.umd.min.js',
};
},
},
// CLI build
{
...nodeConfig,
entry: ['src/cli.ts'],
dts: true,
banner: {
js: '#!/usr/bin/env node',
},
},
]);