Babel トランスパイラーで ES6 を使用するために、Intellij で Filewatcher をセットアップしようとしています。私はこちらのガイドに従っていますが、javascriptコードを書き込もうとしてトランスパイラーコードを実行する場合を除いて、うまくインストールされているように見えましたが、次のエラーが発生しました:
Error: Couldn't find preset "es2015" relative to directory "/Volumes/ShanStore/Main/Projects/NewWebsite"
at /Users/Shan/node_modules/babel-core/lib/transformation/file/options/option-manager.js:281:17
at Array.map (native)
at OptionManager.resolvePresets (/Users/Shan/node_modules/babel-core/lib/transformation/file/options/option-manager.js:265:20)
at OptionManager.mergePresets (/Users/Shan/node_modules/babel-core/lib/transformation/file/options/option-manager.js:254:10)
at OptionManager.mergeOptions (/Users/Shan/node_modules/babel-core/lib/transformation/file/options/option-manager.js:239:14)
at OptionManager.init (/Users/Shan/node_modules/babel-core/lib/transformation/file/options/option-manager.js:338:12)
at File.initOptions (/Users/Shan/node_modules/babel-core/lib/transformation/file/index.js:216:65)
at new File (/Users/Shan/node_modules/babel-core/lib/transformation/file/index.js:137:24)
at Pipeline.transform (/Users/Shan/node_modules/babel-core/lib/transformation/pipeline.js:46:16)
at transform (/Users/Shan/node_modules/babel-cli/lib/babel/util.js:50:22)
私は持っNode v6.4.0
てnpm 3.10.3
インストールしました。.babelrc
ルート ディレクトリに次のような
名前のファイルがあります—</p>
NewWebsite
|_ .babelrc
|_ index.html
|_ script.js
そして、これらのコマンドを実行して、babel 関連のものをインストールしました。
sudo npm install --save-dev babel-cli
sudo npm install --save-dev babel-preset-es2015
私の.babelrc
ファイルは次のようになります。
{
"presets": ["es2015"]
}
ここでさまざまなソリューションを検索しましたが、どれも機能していません。ここで何が問題なのかわかりません!何か助けはありますか?