我正在尝试将 Typescript ( awesome-typescript-loader
( link )) 与 Webpack 一起使用,但运行时在浏览器中看不到源映射webpack-dev-server
。相同的设置适用于babel-loader
(链接)和 ES6 类(即使它们被编译为 ES5,我也可以在浏览器中调试 ES6 类)
我的 Webpack 配置文件看起来像(这是重要的片段,完整版在github 上):
module.exports = {
resolve: {
extensions: ['', '.ts', '.js']
},
entry: {
app: './src/app.ts'
},
output: {
path: params.output.path,
filename: params.output.filename
},
module: {
loaders: [
{test: /\.ts$/, loader: 'awesome-typescript', exclude: /node_modules/},
{test: /\.css$/, loader: 'style!css'}
]
},
plugins: [
new HtmlWebpackPlugin({
template: './src/index.html',
inject: 'body'
})
].concat(params.plugins),
progress: true,
colors: true,
devServer: {
port: params.server.port
}
};