TS80001
File is a CommonJS module; it may be converted to an ES module.
Broken Code ❌
const toc = require('markdown-toc');Solution:
Changing require to import updates the module syntax to ES modules, which are more compatible with modern JavaScript environments and tooling.
Fixed Code ✔️
import toc from 'markdown-toc';