ok so recently i changed my file from index.js
to index.ts
, here is a example of my problem
let response = "none"
let condition = true
if(condition){
response = {id: 123 , data: []}
}
console.log(response)
but its giving me a syntax error saying {id: 123 , data: []} is not assignable to type string
this is kinda frustraiting because i have over 5k lines of code and i dont feel like changing all the variables