diff --git a/docs/esmodules.md b/docs/esmodules.md index acd35e00..1cbc18c5 100644 --- a/docs/esmodules.md +++ b/docs/esmodules.md @@ -17,7 +17,7 @@ const preventTreeShakingPlugin = () => { name: 'no-treeshaking', resolveId(id, importer) { if (!importer) { - // let's not theeshake entry points, as we're not exporting anything in Apps Script files + // let's not treeshake entry points, as we're not exporting anything in Apps Script files return {id, moduleSideEffects: "no-treeshake" } } return null;