我想將shelljs庫加入到angular 2打字稿中。我已將shelljs.d.ts文件包含到我的node_modules/shelljs庫中。找不到包含在角2打字稿中的lib的模塊「shelljs」
我的package.json
"name": "myproj1",
"description": "myproj1: A project",
"typings": {
"shelljs": {
"definitions": "node_modules/shelljs/shelljs.d.ts",
"source": "node_modules/shelljs/global.js"
}
},
我webpack.config.js
var path = require('path');
module.exports = {
entry: './app/web/boot.ts',
output: {
path: path.resolve(__dirname, "js"),
filename: "bundle.js"
},
resolve: {
extensions:['','.js','.ts']
},
module:{
loaders: [{
test: /\.ts/,
loaders: ['ts-loader'],
exclude: /node_modules/
}]
},
target: 'node'
};
我的package.json編譯器選項:
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true
},
我的TS文件:
import child = require("shelljs");
somefun(){
child.exec('node --version',(code, stdout, stderr)=>{
console.log('Exit code:', code);
console.log('Program output:', stdout);
console.log('Program stderr:', stderr);
});
}
我得到的錯誤爲「無法找到模塊'shelljs'」。請幫助我將圖書館納入我的項目。
不知道'shell.js'是如何工作的,但嘗試'let shell = require('shelljs/global'); shell.exec(...' – tchelidze