You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
819 B
30 lines
819 B
8 years ago
|
const path = require("path");
|
||
|
const webpack = require("webpack");
|
||
|
const HtmlWebpackPlugin = require("html-webpack-plugin");
|
||
|
|
||
|
module.exports = {
|
||
|
entry: "./app/script/index.tsx",
|
||
|
devtool: "sourcemap",
|
||
|
output: {
|
||
|
path: path.resolve(__dirname, "dist"),
|
||
|
filename: "bundle.js"
|
||
|
},
|
||
|
resolve: {
|
||
|
extensions: [".ts", ".tsx", ".js"],
|
||
|
alias: {
|
||
|
app: path.resolve("./app")
|
||
|
}
|
||
|
},
|
||
|
module: {
|
||
|
rules: [
|
||
|
{ test: /\.tsx?$/, loader: "awesome-typescript-loader" },
|
||
|
{ test: /\.css$/, loader: "style-loader!css-loader" },
|
||
|
{ test: /\.(ttf|eot|svg|woff(2)?|png|jpg)(\?[a-z0-9=&.]+)?$/, loader: "file-loader" }
|
||
|
]
|
||
|
},
|
||
|
plugins: [
|
||
|
new HtmlWebpackPlugin({
|
||
|
title: "sprinklers3"
|
||
|
})
|
||
|
]
|
||
|
};
|