mirror of
https://github.com/ChainSafe/lodestar.git
synced 2026-01-10 08:08:16 -05:00
**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
41 lines
1.0 KiB
JSON
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"
|
|
],
|
|
}
|
|
}
|