admin管理员组文章数量:1341462
I created a React Native project with Expo.
I have the MainButton.tsx
file inside /ponents
folder like this:
import { View, Text } from "react-native";
const MainButton = () => {
return (
...
);
};
export default MainButton;
Now in the index.tsx
file in the app
folder I want to import this custom button like this:
import { MainButton } from "../ponents";
But it shows the error: Cannot find module '../ponents' or its corresponding type declarations.
How do I fix this? Should I modify the tsconfig.json
file?
I created a React Native project with Expo.
I have the MainButton.tsx
file inside /ponents
folder like this:
import { View, Text } from "react-native";
const MainButton = () => {
return (
...
);
};
export default MainButton;
Now in the index.tsx
file in the app
folder I want to import this custom button like this:
import { MainButton } from "../ponents";
But it shows the error: Cannot find module '../ponents' or its corresponding type declarations.
How do I fix this? Should I modify the tsconfig.json
file?
2 Answers
Reset to default 2The import should be updated to:
import MainButton from "../ponents/MainButton";
if you want to use directory imports like imports like import { MainButton } from "../ponents";
without specifying the filename, set up module aliases in the tsconfig.json
file.
In your tsconfig.json
, add or modify the pilerOptions
section to include paths.
{
"pilerOptions": {
"baseUrl": ".",
"paths": {
"@ponents/*": ["ponents/*"]
}
}
}
After adding module aliases, you can update the import to:
import MainButton from "@ponents/MainButton";
Restart the Expo server
The module is not being found because it is being exported out of the file it is within not the folder itself. You can fix this by changing the import to
import MainButton from "../ponents/MainButton.tsx";
This could also be fixed within your typescript config if wanted by adding the following to your config.
"paths": {
"ponents/*": ["ponents/*"]
}
This should look for it within all files under the ponent directory. I would say I typically see the first option used by most people :) Let me know if you need any further clarification!
本文标签:
版权声明:本文标题:javascript - React-Native with Expo: Shows "Cannot find module 'xyz' or its corresponding type declarat 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743667261a2518935.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论