From 3f7bb1758a5ee64043af59cbe4c60c54d584e3a6 Mon Sep 17 00:00:00 2001 From: Aryan Jassal Date: Thu, 12 Jun 2025 11:54:03 +1000 Subject: [PATCH 1/3] chore: ignoring prettier for local formatting --- .gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index 84856b0..98cb666 100644 --- a/.gitignore +++ b/.gitignore @@ -126,3 +126,10 @@ dist .yarn/build-state.yml .yarn/install-state.gz .pnp.* + +# editor +.vscode/ +.idea/ + +# prettier +.prettierrc \ No newline at end of file From 641c4567cdc6774cae59504a0473f8843e451196 Mon Sep 17 00:00:00 2001 From: Roger Qiu Date: Sun, 15 Feb 2026 08:25:37 +0000 Subject: [PATCH 2/3] Revert "chore: ignoring prettier for local formatting" This reverts commit 3f7bb1758a5ee64043af59cbe4c60c54d584e3a6. --- .gitignore | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.gitignore b/.gitignore index 98cb666..84856b0 100644 --- a/.gitignore +++ b/.gitignore @@ -126,10 +126,3 @@ dist .yarn/build-state.yml .yarn/install-state.gz .pnp.* - -# editor -.vscode/ -.idea/ - -# prettier -.prettierrc \ No newline at end of file From c5a4b51b27d2e193986c3dba927b4a26a51a3507 Mon Sep 17 00:00:00 2001 From: Roger Qiu Date: Sun, 15 Feb 2026 08:29:52 +0000 Subject: [PATCH 3/3] fix: allowImportingTsExtensions was never supposed to be enabled --- tsconfig.build.json | 1 - tsconfig.json | 1 - 2 files changed, 2 deletions(-) diff --git a/tsconfig.build.json b/tsconfig.build.json index f71699f..8247d3c 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -4,7 +4,6 @@ "rootDir": "./src", "outDir": "./dist", "noEmit": false, - "allowImportingTsExtensions": false, "stripInternal": true }, "exclude": [ diff --git a/tsconfig.json b/tsconfig.json index f99bb04..5009107 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,7 +11,6 @@ "noImplicitAny": false, "esModuleInterop": true, "allowSyntheticDefaultImports": true, - "allowImportingTsExtensions": true, "resolveJsonModule": true, "isolatedModules": true, "moduleResolution": "NodeNext",