Recently Google Apps Script (GAS) changed over to using V8 internally.
I've been using VSCode, Typescript, Google Clasp and a tool called ts2gas to develop GAS projects.
The current workflow uploads a transpiled ES3 version of my ES6 source code to Google.
What I'm asking is this: how do I get the transpiler to start outputting more V8-ish code? I have lots of "const" and "let" but the transpiler invariably changes them to "var". Anything that is more recent than ES3 gets converted to an ES3 workalike. Are there settings in tsconfig.json (for example) that will make this happen?