inspec/www/tutorial/config/webpack.config.js
2016-09-23 15:49:54 +02:00

37 lines
995 B
JavaScript

module.exports = {
entry: "./app/main.ts",
output: {
path: __dirname,
filename: "./dist/inspec_tutorial.js",
},
// Enable sourcemaps for debugging webpack's output.
devtool: "source-map",
resolve: {
// Add '.ts' and '.tsx' as resolvable extensions.
extensions: ["", ".webpack.js", ".web.js", ".ts", ".tsx", ".js"]
},
module: {
loaders: [
// All files with a '.ts' or '.tsx' extension will be handled by 'ts-loader'.
{
test: /\.tsx?$/, loader: "ts-loader"
},
{
test: /\.css$/, loader: 'style!css',
},
{
test: /\.js$/,
exclude: /.spec.js/,
loader: "uglify"
}
],
preLoaders: [
// All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
{ test: /\.js$/, loader: "source-map-loader" }
]
},
};