Files
lodestar/tsconfig.build.json
Nazar Hussain 3c466f1f65 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
2025-03-03 06:17:10 +00:00

41 lines
1.0 KiB
JSON

{
"compilerOptions": {
"target": "es2021",
"lib": ["es2021", "dom"],
"module": "esnext",
"moduleResolution": "node",
"pretty": true,
"strict": true,
"sourceMap": true,
"alwaysStrict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"useUnknownInCatchVariables": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"esModuleInterop": true,
"declaration": true,
"declarationMap": true,
"incremental": true,
"preserveWatchOutput": true,
"noUncheckedSideEffectImports": true,
// TODO: Investigate following errors:
// - Cannot find module 'rollup/parseAst' or its corresponding type declarations
"skipLibCheck": true,
// Required to run benchmark command from root directory
"typeRoots": [
"node_modules/@types",
"./types",
"${configDir}/node_modules/@types",
"${configDir}/types"
],
}
}