## Steps to reproduce `bad.json`: ```json { this is not json ``` `tsconfig.json`: ```json { "extends": "./bad.json" } ``` `main.ts`: ```ts export const x = 1; ``` ```sh tsgo -p . ``` ## Behavior with `typescript@6.0` ```text bad.json(1,8): error TS1005: ':' expected. bad.json(1,11): error TS1005: ',' expected. bad.json(1,15): error TS1005: ',' expected. bad.json(2,1): error TS1005: '}' expected. ``` ## Behavior with `tsgo` No errors.
Steps to reproduce
bad.json:{ this is not jsontsconfig.json:{ "extends": "./bad.json" }main.ts:tsgo -p .Behavior with
typescript@6.0Behavior with
tsgoNo errors.