0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【javascript】トランスパイル

Last updated at Posted at 2020-07-19

この記事は以下の書籍を参考に執筆しました

書籍のアウトプットとして
#Babelを使ったトランスパイル
##トランスパイルとは
あるプログラミング言語のソースコードを別のそれに変換する。
###Babelの位置づけ
Babelはjavascriptの特定のバージョンをコンパイルする。
##BabelをNPMスクリプトとしてセットアップ

package.json
     "scripts": {
       "test": "echo \"Error: no test specified\" && exit 1"
       "babel": "babel src -d dist"
     },

出典:入門JavaScriptプログラミング

こう書いておいて

npm run babel

と実行すれば以前よりは楽に実行できる。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?