You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice if the generated tsconfig.json had a trailing comma after the last uncommented compilerOptions setting so that the settings under /* Additional Checks */ can be quickly uncommented without further editing.
For example, after "strict": true in this:
{"compilerOptions": {"module": "Node16","target": "ES2022","outDir": "out","lib": ["ES2022"],"sourceMap": true,"rootDir": "src","strict": true/* trailing comma *//* enable all strict type-checking options *//* Additional Checks */// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */// "noUnusedParameters": true, /* Report errors on unused parameters. */}}
The text was updated successfully, but these errors were encountered:
It would be nice if the generated
tsconfig.json
had a trailing comma after the last uncommentedcompilerOptions
setting so that the settings under/* Additional Checks */
can be quickly uncommented without further editing.For example, after
"strict": true
in this:The text was updated successfully, but these errors were encountered: