30 lines
574 B
JavaScript
30 lines
574 B
JavaScript
|
const path = require("path");
|
||
|
const CopyPlugin = require("copy-webpack-plugin");
|
||
|
module.exports = {
|
||
|
mode: "production",
|
||
|
entry: {
|
||
|
main: path.join(__dirname, "src", "main.ts"),
|
||
|
},
|
||
|
output: {
|
||
|
path: path.join(__dirname, "dist"),
|
||
|
filename: "[name].js",
|
||
|
},
|
||
|
resolve: {
|
||
|
extensions: [".ts", ".js"],
|
||
|
},
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /\.tsx?$/,
|
||
|
loader: "ts-loader",
|
||
|
exclude: /node_modules/,
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
plugins: [
|
||
|
new CopyPlugin({
|
||
|
patterns: [{ from: ".", to: ".", context: "public" }],
|
||
|
}),
|
||
|
],
|
||
|
};
|