### Desired Behavior When `"ts-node"` field is configured in extended tsconfig, it should also work. For example, let's say there are `tsconfig.root.json` and `tsconfig.json`. `"ts-node"` is declared in `tsconfig.root.json` and `tsconfig.json` extends it. `tsconfig.root.json` ```jsonc { "compilerOptions": { // ... some configuration }, "ts-node": { "transpileOnly": true, "transpiler": "ts-node/transpilers/swc-experimental" } } ``` `tsconfig.json` ```json { "extends": "tsconfig.root.json" } ``` If we use `tsconfig.json` with `ts-node`, currently it does not read `"ts-node"` field from `tsconfig.root.json` though extended.