get_effective_compiler_options
Resolve the complete tsconfig.json inheritance chain and obtain the effective compiler options that truly apply, avoiding incorrect assumptions about TypeScript configuration.
Instructions
Resolve the full tsconfig.json inheritance chain and return the final merged compiler options that actually apply — including options inherited from extended base configs in node_modules or monorepo packages. Eliminates agent hallucinations about strict mode, moduleResolution, paths, and target.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| configPath | Yes | Absolute path to the tsconfig.json file to resolve, e.g. /project/tsconfig.json | |
| includeRaw | No | If true, also return the raw per-file options before merging. Default false. |