Project tsconfig failed to load ({0}) — the build, the linter, and the CLI all read this config, so nothing can run until it loads.The tsconfig.json your project named, or the one found next to it, is missing or does not parse. RunTypes reads types through that config, the same one your build uses, so the operation stops instead of guessing with defaults that could resolve your types differently. Fix the tsconfig, or point the tooling at the right file with the plugin or lint tsconfig setting, or the CLI --tsconfig flag.
Full build message
RunTypes derives every type query from your project tsconfig, the same
file your build uses. A tsconfig that was named (or found next to your
project) but is missing or does not parse stops the operation, exactly
like `tsc --project` would, instead of silently falling back to defaults
that could resolve your types differently.
Fix — repair the tsconfig (the message names the first parse problem),
or point the tooling at the right file (the plugin/lint `tsconfig`
setting, or the CLI `--tsconfig` flag).