How disable “any” by default in typescript? I wish to this be error:
let test
test = 1
test = "1"
console.log(test)
I’m new to learning ts. It’s important for me to highlight this so I don’t forget.
I tried this:
"strict": true,
"noImplicitAny": true,