Google Apps Script (GAS) has a file size limitation, which makes it prone to hitting this limit when bundling everything into a single file. To work around this, it's common to split the output into multiple files by specifying multiple files in the entryPoints option of esbuild or using a glob pattern like */.ts. Therefore, esbuild-gas-plugin needs to support cases where there are multiple output files.
Google Apps Script (GAS) has a file size limitation, which makes it prone to hitting this limit when bundling everything into a single file. To work around this, it's common to split the output into multiple files by specifying multiple files in the entryPoints option of esbuild or using a glob pattern like */.ts. Therefore, esbuild-gas-plugin needs to support cases where there are multiple output files.