mirror of
https://github.com/ChainSafe/lodestar.git
synced 2026-01-09 15:48:08 -05:00
**Motivation** Keep the deps updated. **Description** Use latest features provided by Typescript. See the comments below. **Steps to test or reproduce** - Run all tests
19 lines
633 B
JSON
19 lines
633 B
JSON
{
|
|
"extends": "./tsconfig.build.json",
|
|
"compilerOptions": {
|
|
"emitDeclarationOnly": false,
|
|
"incremental": false,
|
|
// Enable it when upgrade `vite-plugin-dts`
|
|
// "noCheck": false,
|
|
"noEmit": true,
|
|
// To be used in the test fixtures
|
|
"resolveJsonModule": true,
|
|
// We want to speed up the CI run for all tests, which require us to use the
|
|
// `transpileOnly` mode for the `ts-node`. This change requires to treat types for each module
|
|
// independently, which is done by setting the `isolatedModules` flag to `true`.
|
|
"isolatedModules": true,
|
|
},
|
|
"ts-node": {
|
|
"transpileOnly": true
|
|
}
|
|
} |