Take this JavaScript code ```js // @ts-check function stuff() { return alert(1 * "1"); } ``` Apply the ignore quick fix on `"1"`. Get sad: ```js // @ts-check function stuff() { // @ts-ignore return alert(1 * "1"); } ```
Take this JavaScript code
Apply the ignore quick fix on
"1".Get sad: