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.
 
 
 
 
 
 

41 lines
1.1 KiB

const path = require("path");
const webpack = require("webpack");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const rootDir = path.resolve(__dirname, "..");
module.exports = {
entry: [
"core-js",
"./app/index.tsx"
],
output: {
path: path.resolve(rootDir, "build"),
filename: "bundle.js"
},
resolve: {
extensions: [".ts", ".tsx", ".js", ".json"],
alias: {
"@app": path.resolve(rootDir, "app"),
"@common": path.resolve(rootDir, "common"),
}
},
module: {
rules: [
{ test: /\.css$/, use: ["style-loader", "css-loader"] },
{ test: /\.(ttf|eot|svg|woff(2)?|png|jpg)(\?[a-z0-9=&.]+)?$/, use: "file-loader" },
{
test: /\.tsx?$/, use: {
loader: "awesome-typescript-loader",
options: { configFileName: path.resolve(rootDir, "app", "tsconfig.json") }
},
},
]
},
plugins: [
new HtmlWebpackPlugin({
template: "./app/index.html"
}),
new webpack.NamedModulesPlugin(),
],
};