From ae1b676fc31bdab439d5d7210007bec4574e4983 Mon Sep 17 00:00:00 2001 From: sethburkart123 Date: Mon, 9 Sep 2024 17:45:47 +1000 Subject: [PATCH] chore(tsconfig): add 'noEmitOnError' option to tsconfig.json --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index fdfa5b31..ff789bbd 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,9 +10,9 @@ /* Bundler mode */ "moduleResolution": "bundler", "allowImportingTsExtensions": true, + "noEmit": true, "resolveJsonModule": true, "isolatedModules": true, - "noEmit": false, "jsx": "react-jsx", /* Linting */