babel-preset-ts-node8

Preset to compile Typescript using Babel for Node.js 8.0

Usage no npm install needed!

<script type="module">
  import babelPresetTsNode8 from 'https://cdn.skypack.dev/babel-preset-ts-node8';
</script>

README

TypeScript allows you only to set target. If you target to es6, no way to compile rest parameters to ES5. But you have to do it because Node support ES6 features step by step and some features are behind flags.

So, Babel is used to transform code.

Run ts-babel to compile. Compiler options are taken automatically from your tsconfig.json. Specify babel configuration in the package.json.

Related