gpt4 book ai didi

reactjs - react jsconfig.json 忽略路径

转载 作者:行者123 更新时间:2023-12-05 08:20:10 26 4
gpt4 key购买 nike

我的 React 应用程序的根目录中有以下 jsconfig.json:

{
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"rmv": ["components/rmv/*"]
}
}
}

./src/components/rmv 文件夹中有一个 helper.jsx 文件。

但我尝试像那样直接导出它:从 'rmv/helper' 导入 Helper失败并出现错误:

Failed to compile
Module not found: Can't resolve 'rmv/helper'

只有 import Helper from 'components/rmv/helper' 有效。为什么?PS:我也试过:

"paths": {
"rmv/*": ["components/rmv/*"]
}

也不行。

这是最小的可重现示例:github.com/chapkovski/trouble_with_jsconfig

特别是这些行: https://github.com/chapkovski/trouble_with_jsconfig/blob/e37c8c216eac0da7c70023f7fba47eea54973176/src/App.js#L4-L5

最佳答案

路径目前在使用 create-react-app 制作的应用中不可用:

https://github.com/facebook/create-react-app/issues/5645

您可能需要考虑使用 rescripts让您修改 CRA 2+ 应用程序中的配置。

关于reactjs - react jsconfig.json 忽略路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60309183/

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