I want to format tsconfig.json without change spaces and commas. this tsc --init config enter image description here
after format,spaces and commas change. what should I do? enter image description here
I want to format tsconfig.json without change spaces and commas. this tsc --init config enter image description here
after format,spaces and commas change. what should I do? enter image description here
The commas are going to be placed at the end of those multi-line comments (/* ... */). So you would have to remove them or put them on independent lines.
Quickly get rid of multi-line comments in Visual Studio Code
Use Regular Expression
\s* \/\* .* \*\/
Replace all