According to this issue on typescript repo, trailing commas in tsconfig are legal (like comments) https://github.com/microsoft/TypeScript/issues/20384#issuecomment-348552936 Example: ```js { "extends": "@tsconfig/svelte/tsconfig.json", "include": ["src/**/*"], "exclude": ["node_modules"], // <- here } ``` Comments are stripped here, but the comma is not, resulting in an error. https://github.com/TypeStrong/tsconfig/blob/3d0586d30a85e1098d4a966e6b563d58abc42620/src/tsconfig.ts#L187