ERROR in src/app/utils/indicator-drawer.utils.ts:119:25 - error TS2339: Property 'timeLog' does not exist on type 'Console'.
119 console.timeLog("drawing")
I am currently working with Typescript and Angular. I have noticed that when I use console.time("drawing") followed by console.timeEnd("drawing"), it functions correctly when I check the inspector logs in Chrome. However, when I try to use console.timeLog("drawing"), TypeScript fails to compile it.
Do you have any suggestions or ideas on how to address this issue? (My current version of TypeScript is 3.3.3333)