From 50f61f65db723415b8ee7fcb80349635a0c19ab6 Mon Sep 17 00:00:00 2001 From: Joel Cox Date: Sun, 28 Apr 2024 00:08:05 +0800 Subject: [PATCH] fix: disable import ts extension option --- packages/tsconfig/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tsconfig/tsconfig.json b/packages/tsconfig/tsconfig.json index b84b9e0..ca46af7 100644 --- a/packages/tsconfig/tsconfig.json +++ b/packages/tsconfig/tsconfig.json @@ -20,7 +20,7 @@ "noEmitOnError": true, "isolatedModules": true, "allowSyntheticDefaultImports": true, - "allowImportingTsExtensions": true, + "allowImportingTsExtensions": false, // just import `.js` instead of `.ts` instead... even though that falls awkward. "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "strict": true,