mirror of
https://github.com/ChainSafe/lodestar.git
synced 2026-01-09 15:48:08 -05:00
**Motivation** Check the types for test files **Description** - Add `test` folder for the `tsconfig.json` files **Steps to test or reproduce** - Run all tests
15 lines
594 B
JSON
15 lines
594 B
JSON
{
|
||
"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 app’s source code.
|
||
// https://www.typescriptlang.org/tsconfig#skipLibCheck
|
||
"skipLibCheck": true,
|
||
"outDir": "lib"
|
||
}
|
||
}
|