fix: type checks for build config (#7519)

**Motivation**

It is commonly practice that if code builds fine, it works fine. 


**Description**

- Having type checking and other checks disabled for the build step
causing confusing in dev experience
- Revert the **noCheck** from the build tsconfig. 


**Steps to test or reproduce**

- Run all tests
This commit is contained in:
Nazar Hussain
2025-03-03 07:17:10 +01:00
committed by GitHub
parent 95e9b3ec86
commit 3c466f1f65

View File

@@ -24,9 +24,7 @@
"declarationMap": true,
"incremental": true,
"preserveWatchOutput": true,
"noUncheckedSideEffectImports": true,
"noCheck": true,
"noUncheckedSideEffectImports": true,
// TODO: Investigate following errors:
// - Cannot find module 'rollup/parseAst' or its corresponding type declarations
"skipLibCheck": true,