webpack: import + module.exports в том же модуле вызвал ошибку

Я разрабатываю сайт с помощью веб-пакета. Когда у меня есть такой код:

import $ from 'jquery';
function foo() {};
module.exports = foo;

Я получил ошибку Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<Object>',

Оказывается, что изменение import $ from 'jquery' в var $ = require('jquery') не вызывает никаких ошибок.

Почему импорт с помощью module.exports вызывает эту ошибку? Что-то не так в использовании require вместо?

1 ответ

Решение

Вы не можете смешивать import а также module.exports, в import мир, вам нужно экспортировать вещи.

// Change this
module.exports = foo;

// To this
export default foo;

Это происходит, если другие модули в нисходящем направлении имеют неожиданное дерево требований. Изменения в Вавилоне требуют импорта там, где не предполагается, что вызывает вышеупомянутую проблему @Matthew Herbst. Чтобы решить это добавить "sourceType": "unambiguous" на ваш babelrc файл или babel.config.js, чтобы @babel/plugin-transform-runtme не выполнял это изменение требуемого выражения для импорта в ваши файлы commonjs. например:

module.exports = {
  presets: [
    '@quasar/babel-preset-app'
  ],

  "sourceType": "unambiguous"
}

Вы можете использовать require с экспортом. Но не import и module.exports.

В моем случае с response-native-web просто используйте дополнительное правило webpack, тогда ошибка TypeError: Cannot assign to read only property 'exports' of object исправлена. Может, ты сможешь сослаться на это.

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

Другие вопросы по тегам