我想在react-native项目上添加一个依赖项。我目前在babel.config.js
文件上有以下代码:
module.exports = function (api) {
api.cache(true);
return {
presets: ['babel-preset-expo'],
plugins: [
],
};
};
我已经找到了扩展babel-plugin-module-resolver
,这似乎是有帮助的(任何其他替代品也会工作),并试图遵循their examples,但他们没有工作
我尝试了以下方法:
module.exports = function (api) {
api.cache(true);
return {
presets: ['babel-preset-expo'],
plugins: [
[
'module-resolver',
{
root: ["./src"],
alias: {
'@dependency/to-shim': 'path/to-shimmer',
},
},
],
],
};
};
但那不管用
1条答案
按热度按时间lmvvr0a81#
我也遇到了同样的错误。代码运行时工作正常。问题是构建。路径仍然是绝对的。
babel.config.js
tsconfig.json
screenshot - should be relative after build