{
"compilerOptions": {
"strict": true, /* Enable all strict type-checking options. */
"target": "esnext" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
}
}
after applying the rule the tsconfig.json transforms into:
{
"compilerOptions": { /* Enable all strict type-checking options. */
"target": "esnext",
"strict": true /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
}
}
description
sort-keys
misplaces the comments in atsconfig.json
reproduction
package.json
tsconfig.json
tsconfig.json
transforms into:reference