src
components
HomePage
Calendar.js
containers
HomePage
index.js
我只是在React(Presentation + Container)中使用推荐的文件夹结构。在研究react-boilerplate文件夹结构时,我可以引用Components文件夹内的Components而不列出相对路径import Calendar from 'components/HomePage/Calendar';
。如何在我的项目中做到这一点,而无需输入完整的相对路径import Calendar from '../../components/HomePage/Calendar'
;
?
答案 0 :(得分:0)
以下.babelrc文件使我能够使用myproject/components/HomePage/Calendar
而不是../../components/HomePage/Calendar
来引用组件:
{
"env": {
"development": {
"plugins": [
["module-resolver", {
"alias": {
"myproject": "./src",
}
}]
]
},
"production": {
"plugins": ["transform-remove-console"]
}
}
}
答案 1 :(得分:0)
分别根据您的项目,javascript或打字稿创建jsconfig.json或tsconfig.json。
在json文件中。
我的项目摘要。
{
"compilerOptions": {
"baseUrl": "src",
"paths": {
"screens/*": ["src/screens/*"],
"components/*": ["src/components/*"],
"utils/*": ["src/utils/*"]
}
}
}
就像这样。
{
"compilerOptions": {
"baseUrl": "your top most parent folder",
}
}