forked from DevinoSolutions/upup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsdx.config.js
77 lines (70 loc) · 2.23 KB
/
tsdx.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
72
73
74
75
76
77
const autoprefixer = require('autoprefixer')
const tailwindcss = require('tailwindcss')
const postcss = require('rollup-plugin-postcss')
const replace = require('@rollup/plugin-replace')
const analyze = require('rollup-plugin-analyzer')
const commonjs = require('@rollup/plugin-commonjs')
const { nodeResolve } = require('@rollup/plugin-node-resolve')
const GRAPH_CLIENT_DEPS = [
'@microsoft/microsoft-graph-client',
'@microsoft/microsoft-graph-client/authProviders/authCodeMsalBrowser',
]
const AWS_SDK_DEPS = [
'@aws-sdk/core',
'@aws-sdk/client-s3',
'@aws-sdk/s3-request-presigner',
'@aws-sdk/xhr-http-handler',
'@smithy/core',
'@smithy/signature-v4',
]
const AZURE_DEPS = [
'@azure/core-lro',
'@azure/core-util',
'@azure/storage-blob',
'@azure/identity',
'@azure/msal-browser',
]
module.exports = {
rollup(config, options) {
const isNode = options.format === 'cjs'
config.plugins = [
nodeResolve({
extensions: ['.js', '.jsx', '.ts', '.tsx'],
}),
commonjs({
requireReturnsDefault: 'auto',
}),
replace({
preventAssignment: true,
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV),
'process.env.TARGET': JSON.stringify(
isNode ? 'node' : 'browser',
),
}),
...config.plugins,
postcss({
plugins: [tailwindcss, autoprefixer],
inject: !isNode && { insertAt: 'top' },
extract: !isNode && !!options.writeMeta,
}),
analyze({ summaryOnly: true }),
]
if (isNode) {
config.output.file = config.output.file.replace(
'.cjs.production.min.js',
'.node.js',
)
config.external = [
...(Array.isArray(config.external) ? config.external : []),
'react',
'react-dom',
'react/jsx-runtime',
'tailwind-merge',
...AWS_SDK_DEPS,
...AZURE_DEPS,
...GRAPH_CLIENT_DEPS,
]
}
return config
},
}