From 700bb595abfd5ad8cc0e96644fe8a740fa8f7681 Mon Sep 17 00:00:00 2001 From: Sid Vishnoi <8426945+sidvishnoi@users.noreply.github.com> Date: Fri, 27 Sep 2024 16:37:30 +0530 Subject: [PATCH] Update esbuild/dev.ts --- esbuild/dev.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esbuild/dev.ts b/esbuild/dev.ts index eda8f0b9..bba48d98 100644 --- a/esbuild/dev.ts +++ b/esbuild/dev.ts @@ -99,7 +99,7 @@ function liveReloadPlugin({ target }: { target: Target }): ESBuildPlugin { const contents = await readFile(args.path, 'utf8'); return { contents: contents + '\n\n\n' + reloadScriptContent, - loader: 'tsx' as const, + loader: 'ts' as const, }; }); },