From 8c764f6c9813282d7653fa042ba14a3f67f45cab Mon Sep 17 00:00:00 2001 From: Mikael Hugo Date: Sun, 10 May 2026 21:31:53 +0200 Subject: [PATCH] fix(tsconfig): add jsx/jsxImportSource to tsconfig.extensions.json for tsgo compat tsgo (TS7 native port) requires explicit jsx setting when .tsx files are in scope. tsc 6 was lenient; tsgo errors without it. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- tsconfig.extensions.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.extensions.json b/tsconfig.extensions.json index 4236ca0e9..d84893e5b 100644 --- a/tsconfig.extensions.json +++ b/tsconfig.extensions.json @@ -8,6 +8,8 @@ "ignoreDeprecations": "6.0", "target": "ES2024", "lib": ["ES2024", "DOM", "DOM.Iterable"], + "jsx": "react-jsx", + "jsxImportSource": "react", "rootDir": ".", "paths": { "@singularity-forge/coding-agent": [