mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
11 lines
246 B
TypeScript
11 lines
246 B
TypeScript
import { build } from 'esbuild';
|
|
|
|
build({
|
|
bundle: true,
|
|
entryPoints: ['./src/index.ts'],
|
|
external: ['react', 'react-dom', 'styled-components'],
|
|
format: 'cjs',
|
|
outfile: './dist/index.js',
|
|
watch: Boolean(process.env.ESBUILD_WATCH),
|
|
});
|