我试图用webpack构建一个umd库;无论我做什么都会收到警告:
警告在D:/Code/Node/sample.io/source/index.ts中 3:24关键依赖关系:require函数以不能静态提取依赖关系的方式使用
当我尝试require('./index.js')
生成的index.js时,我得到:
错误:找不到模块"。"
为了完整性,这里是我的所有文件:
webpack.config.js:
module.exports = {
entry: {
index: __dirname + '/index'
},
output: {
filename: 'index.js',
library: 'mylib',
libraryTarget: 'umd',
umdNamedDefine: true
},
resolve: {
root: __dirname,
extensions: ['', '.ts', '.js'],
},
module: {
loaders: [
{ test: /\.ts$/, loaders: ['awesome-typescript-loader'] }
]
}
}
tsconfig.json:
{
"compilerOptions": {
"target": "es5",
"module": "umd"
},
"exclude": [
"node_modules"
]
}
的package.json:
{
"name": "foo",
"version": "0.1.0",
"devDependencies": {
"awesome-typescript-loader": "^2.0.2",
"typescript": "^2.0.0",
"webpack": "^2.1.0-beta.17"
}
}
index.ts:
export function MyFunc(params) {
console.log("hello world");
}
node -v
= v6.3.0 npm -v
= 3.7.5 node 4.2.6
。如果我将模块更改为commonjs,它可以完美地工作,没有警告或错误。
答案 0 :(得分:14)
我认为你需要在tsconfig中使用"module": "commonjs"
所以typescript编译将发出webpack可以理解的模块,你仍然可以从webpack获得umd输出
希望这有帮助
答案 1 :(得分:2)
如果您无法将module
从umd
更改为commonjs
,因为您只是在使用它,并且您无法访问来源,则可以使用umd-compat-loader
作为一种解决方法。将以下rule
添加到您的webpack.config.js
:
module: {
rules: [
// other rules come here.
{
test: /node_modules[\\|/](name-of-the-umd-package)/,
use: { loader: 'umd-compat-loader' }
}
]
},
我已向此thread添加了一些详细信息。