繁体   English   中英

Webpack + Linaria - 当前未启用对实验语法“jsx”的支持

[英]Webpack + Linaria - Support for the experimental syntax 'jsx' isn't currently enabled

我在 create-react-app 项目中将linaria添加到我的 webpack 配置中,因此最终规则如下:

{
  "test": /\.(js|mjs|jsx|ts|tsx)$/,
  "include": "C:\\Project\\src",
  "use": [
    {
      "loader": "C:\\Project\\node_modules\\babel-loader\\lib\\index.js",
      "options": {
        "customize": "C:\\Project\\node_modules\\babel-preset-react-app\\webpack-overrides.js",
        "presets": [
          [
            "C:\\Project\\node_modules\\babel-preset-react-app\\index.js",
            { "runtime": "automatic" }
          ],
          "C:\\Project\\node_modules\\@linaria\\babel-preset\\lib\\index.js"
        ],
        "babelrc": false,
        "configFile": false,
        "cacheIdentifier": "production:babel-plugin-named-asset-import@0.3.7:babel-preset-react-app@10.0.0:react-dev-utils@11.0.4:react-scripts@4.0.3",
        "plugins": [
          [
            "C:\\Project\\node_modules\\babel-plugin-named-asset-import\\index.js",
            {
              "loaderMap": {
                "svg": {
                  "ReactComponent": "@svgr/webpack?-svgo,+titleProp,+ref![path]"
                }
              }
            }
          ]
        ],
        "cacheDirectory": true,
        "cacheCompression": false,
        "compact": true
      }
    },
    {
      "loader": "C:\\Project\\node_modules\\@linaria\\webpack-loader\\lib\\index.js",
      "options": { "sourceMap": false, "cacheDirectory": "src/.linaria_cache" }
    }
  ]
}

但我得到了这个结果:

当前未启用对实验性语法“jsx”的支持

这个配置有什么问题吗?

如果没有 babelrc 文件, @linaria\webpack-loader似乎将无法工作(即使预设已经在 babel-loader 上)

{
    "presets": [
      "babel-preset-react-app",
      "@linaria"
    ],
    "plugins": [
      [
        "babel-plugin-named-asset-import",
        {
          "loaderMap": {
            "svg": {
              "ReactComponent": "@svgr/webpack?-svgo,+titleProp,+ref![path]"
            }
          }
        }
      ],
      "@babel/plugin-proposal-class-properties"
    ]
  }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM