我试图在Webpack中设置一个Angular 2应用程序(用TypeScript编写),以便在IntelliJ IDEA 15中调试它。我在本地使用webpack-dev-server提供它。 / p>
我注意到的一件事是,当我在IntelliJ调试器中查看我的应用时,很少有我的应用程序文件出现在Scripts选项卡的webpack://.
部分或在Chrome的检查员中。
这是我在Chrome检查器中列出的内容,例如:
显示的文件非常少。但是这里(某些)真正发挥作用(如IntelliJ IDEA所示):
这就是我的webpack.config.js
文件:
// @AngularClass
/*
* Helper: root(), and rootDir() are defined at the bottom
*/
var path = require('path');
var webpack = require('webpack');
// Webpack Plugins
var CommonsChunkPlugin = webpack.optimize.CommonsChunkPlugin;
/*
* Config
*/
module.exports = {
// for faster builds use 'eval'
devtool: 'source-map',
debug: true, // remove in production
entry: {
// 'vendor': './src/vendor.ts',
'vendor': './src/vendor.ts',
'app': './src/app/app.ts' // our angular app
},
// Config for our build files
output: {
path: root('__build__'),
filename: '[name].js',
sourceMapFilename: '[name].map',
chunkFilename: '[id].chunk.js'
},
resolve: {
// ensure loader extensions match
alias: { // failed attempt to import into vendor.ts
jquery: path.join(__dirname, 'src/lib/jquery/jquery.min.js'),
'js.cookie': path.join(__dirname, 'src/lib/js.cookie/js.cookie.js'),
bootstrap: path.join(__dirname, 'src/lib/bootstrap/bootstrap.js')
},
extensions: ['', '.ts', '.js', '.json', '.css', '.html']
},
module: {
// preLoaders: [ { test: /\.ts$/, loader: 'tslint-loader' } ],
loaders: [
// Support for .ts files.
{
test: /\.ts$/,
loader: 'ts-loader',
query: {
'ignoreDiagnostics': [
2403, // 2403 -> Subsequent variable declarations
2300, // 2300 -> Duplicate identifier
2374, // 2374 -> Duplicate number index signature
2375 // 2375 -> Duplicate string index signature
]
},
exclude: [/\.(spec|e2e)\.ts$/, /node_modules\/(?!(ng2-.+))/]
},
// Support for *.json files.
{test: /\.json$/, loader: 'json-loader'},
// Support for CSS as raw text
{test: /\.css$/, loader: 'raw-loader'},
// support for .html as raw text
{test: /\.html$/, loader: 'raw-loader'}
],
noParse: [/angular2-polyfills/]
},
plugins: [
new CommonsChunkPlugin({name: 'vendor', filename: 'vendor.js', minChunks: Infinity}),
new CommonsChunkPlugin({name: 'common', filename: 'common.js', minChunks: 2, chunks: ['app', 'vendor']})
// include uglify in production
],
// Other module loader config
tslint: {
emitErrors: false,
failOnHint: false
},
// our Webpack Development Server config
devServer: {
historyApiFallback: true,
contentBase: 'src',
publicPath: '/__build__'
}
};
// Helper functions
function root(args) {
args = Array.prototype.slice.call(arguments, 0);
return path.join.apply(path, [__dirname].concat(args));
}
function rootNode(args) {
args = Array.prototype.slice.call(arguments, 0);
return root.apply(path, ['node_modules'].concat(args));
}
到目前为止,我没有运气调试我的应用程序,如果调试器无法使用创建的源映射将正在运行的代码映射到我的源文件,这似乎并不令人惊讶通过Webpack。
如果有人对我可能需要做的事情有任何见解,我会很感激。
答案 0 :(得分:0)
问题似乎是缓存问题。吹灭我的构建目录并重新启动webpack(或webpack-dev-server)会导致一切都回来。
简单地重启服务器没有任何影响。