vim-astro icon indicating copy to clipboard operation
vim-astro copied to clipboard

Handle comments in JSONC

Open romainl opened this issue 1 year ago • 0 comments

tsconfig.json files are actually JSONC. This commit removes lines like the following before parsing the content as JSON:

// some comment
/*
 * foo
 * bar
*/

but it doesn't handle inline comments:

  "key": "value", // some comment

romainl avatar Apr 19 '24 11:04 romainl