Switch ts and babel for swc-loader

Replace old <> assertion syntax
This commit is contained in:
David Edmondson
2021-09-04 16:57:49 -07:00
parent 05bab22807
commit cfbdae6def
12 changed files with 1085 additions and 902 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ export function tabCompletion(
);
return;
}
const textBox = <HTMLInputElement>textBoxElem;
const textBox = textBoxElem as HTMLInputElement;
const oldValue = textBox.value;
const semiColonIndex = oldValue.lastIndexOf(";");