TS1218error TS1218: Export assignment is not supported when ‘–module’ flag is ‘system’.Broken Code ❌12345class LRUCache { // ...}export = LRUCache;Fixed Code ✔️123export class LRUCache { // ...}