Skip to content
1 change: 0 additions & 1 deletion src/tokenizer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1483,7 +1483,6 @@ export class Tokenizer extends DiagnosticEmitter {
this.readDecimalFloatPartial();
}
}
// @ts-ignore
let floatString = text.substring(start, this.pos).replaceAll("_", "");
return parseFloat(floatString);
}
Expand Down
2 changes: 1 addition & 1 deletion src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"outDir": "../out",
"allowJs": false,
"sourceMap": true,
"target": "ES2016",
"target": "esnext",
"strict": true
},
"include": [
Expand Down