ESLint pluginRulesno-zone-critical-browser-apisOn this pageno-zone-critical-browser-apisDetects all scheduling APIs (setTimeout, setInterval, requestAnimationFrame).RationaleZone patched scheduling APIs might be overused and cause unnecessary change detection runs.Examples❌ Examples of incorrect code for this rulesetTimeout(() => { console.log('hello');}, 0);✅ Examples of correct code for this ruleimport { setTimeout } from '@rx-angular/cdk/zone-less';setTimeout(() => { console.log('hello');}, 0);