Files
lodestar/packages/prover/tsconfig.json
Nazar Hussain 9f78c9dad8 chore: fix broken type check for test files (#7567)
**Motivation**

Check the types for test files

**Description**

- Add `test` folder for the `tsconfig.json` files

**Steps to test or reproduce**

- Run all tests
2025-03-13 13:47:22 +00:00

15 lines
594 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"extends": "../../tsconfig.json",
"include": ["src", "test"],
"compilerOptions": {
// To fix error "Duplicate identifier 'Buffer'"
// This can save time during compilation at the expense of type-system accuracy.
// For example, two libraries could define two copies of the same type in an inconsistent way.
// Rather than doing a full check of all d.ts files, TypeScript will type check
// the code you specifically refer to in your apps source code.
// https://www.typescriptlang.org/tsconfig#skipLibCheck
"skipLibCheck": true,
"outDir": "lib"
}
}