使用React脚本V2.1.3遇到错误。我们只是从V1.x迁移到此版本。在react-scripts升级之前,这一切都很好。
源文件(metadataAccess,执行导出)是打字稿,并具有以下代码:
export const NAVIGATION = 'Navigation';
引用const的文件是Javascript,如下所示:
import { WIDGET_TREE, NAVIGATION, metadataScan } from './universal/metadataAccess';
...
const scanNavigation = await metadataScan(dynamoClient, NAVIGATION);
错误是:
Creating an optimized production build...
Failed to compile.
./src/App.jsx
Attempted import error: 'NAVIGATION' is not exported from './universal/metadataAccess'.
如果要修复此错误(上述),则在另一个const上也会遇到相同的问题。可悲的是,一次报告了一次错误。我也在导出的枚举上得到它。全部来自Typescript文件。我将引用文件的扩展名更改为.tsx(来自.jsx),没有区别。
我已经在Typescript编译,webpack和babel的源代码中搜索了字符串“尝试导入”,但是没有找到任何内容,所以我什至不知道是哪个代码导致了此错误。
我还尝试在导入语句中的文件名中添加“ .js”,并且(生成的)Javascript文件包含以下行:
exports.NAVIGATION = 'Navigation';
得到相同的结果。我尝试将import语句更改为引用不存在的文件,但遇到了另一个错误,因此似乎正在查找导入的文件。
关于如何运行它的任何想法?
答案 0 :(得分:0)
以下是针对react-native-web的内容,其中包含“尝试导入错误”的解决方案,也许对您也有帮助。
npm install --save-dev react-app-rewired
在项目根目录中创建一个config-overrides.js
// used by react-app-rewired
const webpack = require('webpack');
const path = require('path');
module.exports = {
webpack: function (config, env) {
config.module.rules[1].use[0].options.baseConfig.extends = [
path.resolve('.eslintrc.js'),
];
// To let alias like 'react-native/Libraries/Components/StaticRenderer'
// take effect, must set it before alias 'react-native'
delete config.resolve.alias['react-native'];
config.resolve.alias['react-native/Libraries/Components/StaticRenderer'] =
'react-native-web/dist/vendor/react-native/StaticRenderer';
config.resolve.alias['react-native'] = path.resolve(
'web/aliases/react-native',
);
// Let's force our code to bundle using the same bundler react native does.
config.plugins.push(
new webpack.DefinePlugin({
__DEV__: env === 'development',
}),
);
// Need this rule to prevent `Attempted import error: 'SOME' is not exported from` when `react-app-rewired build`
// Need this rule to prevent `TypeError: Cannot assign to read only property 'exports' of object` when `react-app-rewired start`
config.module.rules.push({
test: /\.(js|tsx?)$/,
// You can exclude the exclude property if you don't want to keep adding individual node_modules
// just keep an eye on how it effects your build times, for this example it's negligible
// exclude: /node_modules[/\\](?!@react-navigation|react-native-gesture-handler|react-native-screens)/,
use: {
loader: 'babel-loader',
},
});
return config;
},
paths: function (paths, env) {
paths.appIndexJs = path.resolve('index.web.js');
paths.appSrc = path.resolve('.');
paths.moduleFileExtensions.push('ios.js');
return paths;
},
};
还创建一个web/aliases/react-native/index.js
// ref to https://levelup.gitconnected.com/react-native-typescript-and-react-native-web-an-arduous-but-rewarding-journey-8f46090ca56b
import {Text as RNText, Image as RNImage} from 'react-native-web';
// Let's export everything from react-native-web
export * from 'react-native-web';
// And let's stub out everything that's missing!
export const ViewPropTypes = {
style: () => {},
};
RNText.propTypes = {
style: () => {},
};
RNImage.propTypes = {
style: () => {},
source: () => {},
};
export const Text = RNText;
export const Image = RNImage;
// export const ToolbarAndroid = {};
export const requireNativeComponent = () => {};
现在您可以只运行react-app-rewired start
而不是react-scripts start