Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #700 from SuperViz/fix/kick-participant-interval
Browse files Browse the repository at this point in the history
fix: esm entrypoints
  • Loading branch information
carlossantos74 authored Jul 1, 2024
2 parents 696136e + c82856a commit b3c453c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .esbuild/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ const config = {

const esmConfig = {
...config,
entryPoints,
entryPoints: ['src/index.ts'],
bundle: true,
sourcemap: true,
minify: true,
splitting: true,
format: 'esm',
define: { global: 'window' },
define: { global: 'window', 'process.env': JSON.stringify(env) },
target: ['esnext'],
chunkNames: 'chunks/[name]-[hash]',
};
Expand Down

0 comments on commit b3c453c

Please sign in to comment.