Typescript / Electron / Webpack模块如何/为什么具有绝对路径?

时间:2019-03-31 07:16:38

标签: javascript node.js typescript electron

我在一个电子项目中使用了反应日期,这需要通过以下方式进行初始化:

 import 'react-dates/initialize';

这在内部设置了一些变量以备后用。问题是当我下次输入使用这些变量的代码时,由于它们仍然为空,因此我得到了一个例外。

事实证明,Chrome / Electron将它们视为2个单独的文件,即使它们是磁盘上的相同文件也是如此。在破坏安装文件时,Chrome会报告以下路径(首次访问/第二次访问)

C:\src\Project\node_modules\react-with-styles\lib\ThemedStyleSheet.js
webpack:///./node_modules/react-with-styles/lib/ThemedStyleSheet.js

好:那很奇怪-有什么用?这在哪里/如何发生?我认为这与我的Webpack设置有关-如果重要的话,我正在使用TsConfigPathsPlugin和output / paths。从我的Webpack:

/**
 * Base webpack config used across other specific configs
 */

import path from 'path';
import webpack from 'webpack';
import { dependencies } from '../package.json';

const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin');

export default {
  externals: [...Object.keys(dependencies || {})],

  module: {
    rules: [
      {
        test: /\.tsx?$/,
        exclude: /node_modules/,
        use: [
          {
            loader: 'babel-loader',
            options: {
              cacheDirectory: true
            }
          },
          'ts-loader'
        ]
      },
      {
        test: /\.js$/, // Transform all .js files required somewhere with Babel
        exclude: /node_modules/,
        use: {
          loader: 'babel-loader',
          options: {
            cacheDirectory: true
          }
        }
      }
    ]
  },

  output: {
    path: path.join(__dirname, '..', 'app'),
    // https://github.com/webpack/webpack/issues/1114
    libraryTarget: 'commonjs2'
  },

  /**
   * Determine the array of extensions that should be used to resolve modules.
   */
  resolve: {
    extensions: ['.js', '.ts', '.tsx', '.json'],
    plugins: [new TsconfigPathsPlugin({ configFile: './tsconfig.json' })]
  },

  plugins: [
    new webpack.EnvironmentPlugin({
      NODE_ENV: 'production'
    }),

    new webpack.NamedModulesPlugin()
  ]
};

我的tsconfig使用baseUrl重新映射路径

{
  "compilerOptions": {
    "target": "es5",
    "baseUrl": "./app/",
    "jsx": "react",
    "module": "es2015",
    "moduleResolution": "node",
    "noUnusedLocals": true,
    "pretty": true,
    "sourceMap": true,
    "resolveJsonModule": true,
    "lib": ["dom", "es5", "es6", "es7", "es2017"],

    "allowSyntheticDefaultImports": true // no errors with commonjs modules interop
    //"strict": true,
    //"strictFunctionTypes": false,
  },
  "exclude": ["node_modules", "**/node_modules/*"]
}

关于在哪里/如何解决这个问题的任何建议,深表感谢!

-编辑:

我认为磁盘上没有两个物理副本,npm -ls react-dates的输出如下

C:\<project>\manager-ts>npm ls react-dates                                                                 
erb-typescript-example@0.17.1 C:\<project>\manager-ts                                                      
`-- react-dates@20.1.0                                                                                                                                                                                                                                                                                                                                                  
C:\<project>\manager-ts> 

1 个答案:

答案 0 :(得分:0)

这不是一个解决方法,可能对其他任何人都没有帮助,但这确实使我不受阻。

我创建了第二个打字稿模块,该模块使用react-dates定义了组件。该模块被编译为es5,然后将“ yarn link”编入我的主应用程序。尽管我从未弄清楚为什么存在差异(并且我仍然/也从ethers.js得到了重复的初始化警告),但至少可以解决此问题。