We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
// @target: es3 const i: 010 = 8;
Actual:
const i: 010 = 8; ~ Error: Type '8' is not assignable to type '10';
Expected:
const i: 010 = 8; ~~~ Error: Octal literal types must use ES2015 syntax. Use the syntax '0o10'.
Actual:
Expected: