Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/javascript/grid-ui/esbuild.base.config.mjs
2884 views
1
/** @type {import("esbuild").BuildOptions;} */
2
export const esbuildConfig = {
3
entryPoints: ['src/index.tsx'],
4
bundle: true,
5
minify: false,
6
external: [
7
"fs",
8
"module",
9
"os",
10
"path",
11
"util"
12
],
13
loader: {
14
".png": "file",
15
".svg": "file",
16
".woff": "file",
17
".woff2": "file",
18
},
19
platform: 'browser',
20
outfile: 'build/index.js',
21
sourcemap: true,
22
target: 'es6',
23
supported: {
24
bigint: true
25
},
26
}
27
28