Следующий файл .babelrc позволил мне сослаться на компоненты с myproject/components/HomePage/Calendar
вместо ../../components/HomePage/Calendar
:
{
"env": {
"development": {
"plugins": [
["module-resolver", {
"alias": {
"myproject": "./src",
}
}]
]
},
"production": {
"plugins": ["transform-remove-console"]
}
}
}