Given this code, which roughly matches what the module-ified compiler will look like:
import {
readFile, readFileSync, read, readSync,
chmod, chmodSync,
} from "fs";
readFile;
readFileSync;
read;
// readSync;
chmod;
chmodSync;
Using the quick fix to remove the unused readSync leaves the code looking like this:
import {
readFile, readFileSync, read, chmod, chmodSync,
} from "fs";
readFile;
readFileSync;
read;
// readSync;
chmod;
chmodSync;