From 502efd38babb5581e7b6a7ed68a91b3474d37166 Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Tue, 30 May 2023 09:36:46 -0700 Subject: [PATCH] fix lint --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index ba4e22fb..adc3ff44 100644 --- a/index.js +++ b/index.js @@ -77,7 +77,7 @@ module.exports = function(source, map) { ...options.compilerOptions }; if (VERSION[0] === '3') { - compileOptions.format = (options.compilerOptions && options.compilerOptions.format) || 'esm' + compileOptions.format = (options.compilerOptions && options.compilerOptions.format) || 'esm'; } else { if (options.compilerOptions && options.compilerOptions.format && !warned) { warned = true;