web-dev-qa-db-ja.com

Jestをビルドしようとすると、「キャッシングが未構成のままになりました」とスローされます。

次の.babelrc.jsルートフォルダー内:

{
       "plugins": [
           "@babel/plugin-transform-flow-strip-types",
           "@babel/plugin-transform-modules-commonjs",
           "@babel/plugin-transform-async-to-generator",
           "@babel/plugin-transform-strict-mode",
           "@babel/plugin-transform-runtime"
       ],
       "cache": "true"
}

しかし、実行しようとするとnode ./packages/jest-cli/bin/jest.js そうですか:

キャッシュは未構成のままです。 Babelのプラグイン、プリセット、および.babelrc.jsファイルは、ハンドラー関数の最初のパラメーターを使用して、さまざまなタイプのキャッシュ用に構成できます。

私は何が欠けていますか?

12
Jackie

新しいbabel.config.jsを使用

https://new.babeljs.io/docs/en/next/babelconfigjs.html

module.exports = function(api) {
  api.cache(true)
  return {
    plugins: [
      "@babel/plugin-transform-flow-strip-types",
      "@babel/plugin-transform-modules-commonjs",
      "@babel/plugin-transform-async-to-generator",
      "@babel/plugin-transform-strict-mode",
      "@babel/plugin-transform-runtime"
    ]
  }
}
25
Goodmind