TS1127
Invalid character.
Broken Code ❌
# My commentFixed Code ✔️
Unlike in Python, inline comments cannot begin with a single hash sign (#) in TypeScript. You must use 2 slashes:
// My commentInvalid character.
# My commentUnlike in Python, inline comments cannot begin with a single hash sign (#) in TypeScript. You must use 2 slashes:
// My comment