5

我正在尝试构建一个简单的文件,该文件依赖于使用 UMD 导出构建的库。

// main.ts
import { parseTree } from 'jsonc-parser';

const tree = parseTree('{ "name: "test" }');

console.log(tree);

它编译得很好,但是 webpack 会吐出依赖错误:

哈希:85004e3e1bd3582666f5 版本:webpack 2.3.2 时间:959ms 资产大小块块名称 dist/bundle.js 61.8 kB 0 [emitted] main build/main.d.ts 0 bytes [emitted] [0] ./~/jsonc- parser/lib/main.js 40.1 kB {0} [内置] [1] ./~/jsonc-parser/lib 160 字节 {0} [内置] [2] ./~/path-browserify/index.js 6.18 kB {0} [内置] [3] ./~/process/browser.js 5.3 kB {0} [内置] [4] ./src/main.ts 200 字节 {0} [内置] [5] ./ ~/vscode-nls/lib 160 字节 {0} [可选] [内置] [6] ./~/vscode-nls/lib/main.js 5.46 kB {0} [内置]

./~/jsonc-parser/lib/main.js 3:24-31 中的警告 关键依赖项:require 函数的使用方式不能静态提取依赖项

./~/vscode-nls/lib/main.js 中的警告 118:23-44 关键依赖项:依赖项的请求是一个表达式

./~/vscode-nls/lib/main.js 中的错误找不到模块:错误:无法解析 '.../webpack-typescript-umd/node_modules/vscode-nls/lib' @ 中的 'fs'。 /~/vscode-nls/lib/main.js 7:9-22 @ ./~/jsonc-parser/lib/main.js @ ./src/main.ts

// webpack.config.js
const path = require('path');

module.exports = {
    entry: './src/main.ts',
    output: {
        filename: 'dist/bundle.js'
    },
    resolve: {
        // Add `.ts` and `.tsx` as a resolvable extension.
        extensions: ['.ts', '.tsx', '.js'] // note if using webpack 1 you'd also need a '' in the array as well
    },
    module: {
        loaders: [ // loaders will work with webpack 1 or 2; but will be renamed "rules" in future
            // all files with a `.ts` or `.tsx` extension will be handled by `ts-loader`
            {
                test: /\.tsx?$/,
                loader: 'ts-loader',
                options: {
                    configFileName: path.resolve(__dirname, 'tsconfig.json')
                }
            },
        ]
    }
}

我想将我的js转译文件保留为,commonjs但我也想捆绑jsonc-parser而不将其重新编译为commonjs.

在 github 上创建了一个 repo,显示了错误。希望这可以帮助你。

您可以简单npm install && npm run dist地重现错误。

4

1 回答 1

2

我遇到了同样的问题,想分享两种解决问题的方法:

如果使用的包由一个模块组成,就像之前的1.0.1版本一样jsonc-parser,您可以将以下内容添加到您的webpack.config.js

module: {
    rules: [
        // your rules come here. 
    ],
    noParse: /jsonc-parser|other-umd-packages/
},

如果使用的包由多个文件组成,则可以将其umd-compat-loader用作一种解决方法。将umd-compat-loader加载程序添加到您的并在中package.json配置以下内容:rulewebpack.config.js

module: {
    rules: [
        // other rules come here.
        {
            test: /node_modules[\\|/](jsonc-parser|other-umd-packages)/,
            use: { loader: 'umd-compat-loader' }
        }
    ]
},

关于如何正确使用的一些提示test,可以在这里找到。最后但并非最不重要的一点是,功劳归于解决方法的 OP

于 2018-02-16T09:33:57.583 回答