powershellでハマった。
原因:実行ポリシーが初期値のままだから。
対処:vscodeで実行したいディレクトリに移動したうえで以下のコマンドを実行した。
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process
その後確認してみるためのコマンドは以下の通り
Get-ExecutionPolicy
→RemoteSignedと出力される
そのうえでbabelを実行しトランスパイルを実行する
.\node_modules.bin\babel input.js --out-file output.js
以上
参考:
https://qiita.com/ponsuke0531/items/4629626a3e84bcd9398f