gpt4 book ai didi

javascript - require.context 的 tsx 和 jsx 文件

转载 作者:行者123 更新时间:2023-11-30 19:23:29 29 4
gpt4 key购买 nike

我希望能够使用 webpack's require.context 搜索 .jsx.tsx 文件.我怎样才能做到这一点?我假设我需要以某种方式调整我的正则表达式?这就是我目前正在寻找我的 .jsx 文件的方式:

const req = require.context('../src/app/app', true,/\.stories\.jsx$/);

最佳答案

是的,您可以轻松调整正则表达式以匹配 .jsx.tsx

[tj]sx$
  • [tj] - 匹配 tj
  • sx - 匹配 sx
  • $ - 字符串结尾

 const req = require.context('../src/app/app', true, /\.stories\.[tj]sx$/);

关于javascript - require.context 的 tsx 和 jsx 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57193017/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com