From 9fd31150456b7d9ebaaeabfa5c463bc3e8a2fb9d Mon Sep 17 00:00:00 2001 From: Oluwatobi Sofela Date: Tue, 27 Jan 2026 00:31:19 +0100 Subject: [PATCH] chore: Remove redundant jsx compiler option --- .github/workflows/release.yml | 1 + tsconfig.test.json | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e726c53..a480c45 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,6 +48,7 @@ jobs: # - semantic-release@25: The main semantic-release package # - @semantic-release/changelog@6: Update the changelog file # - @semantic-release/git@10: Commit changelog and version bump + # - conventional-changelog-conventionalcommits@9: Conventional Commits preset for commit analysis and changelog generation - name: Install semantic-release (CI-only) run: | npm install --no-save \ diff --git a/tsconfig.test.json b/tsconfig.test.json index 92ff24d..54caf30 100644 --- a/tsconfig.test.json +++ b/tsconfig.test.json @@ -3,7 +3,6 @@ "compilerOptions": { "module": "commonjs", "moduleResolution": "node10", - "noEmit": true, - "jsx": "react-jsx" + "noEmit": true } }