46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
const path = require("path");
|
|
const process = require("process");
|
|
const CopyPlugin = require("copy-webpack-plugin");
|
|
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
|
|
|
|
module.exports = {
|
|
entry: {
|
|
index: "./src/js/index.tsx",
|
|
},
|
|
output: {
|
|
filename: "js/[name].js",
|
|
path: path.resolve(__dirname, "build")
|
|
},
|
|
resolve: {
|
|
alias: { "~": [path.resolve("src/js/")] },
|
|
roots: [path.resolve("src/js"), path.resolve("node_modules")],
|
|
modules: [path.resolve("src/js"), path.resolve("node_modules")],
|
|
extensions: [".ts", ".tsx"]
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.tsx?$/,
|
|
loader: "esbuild-loader",
|
|
exclude: /node_modules/,
|
|
options: {
|
|
loader: "tsx",
|
|
target: "es2015"
|
|
}
|
|
},
|
|
],
|
|
},
|
|
plugins: [
|
|
new CopyPlugin({
|
|
patterns: [
|
|
{ from: "src/html/", to: "html" },
|
|
{ from: "src/css/", to: "css" },
|
|
{ from: "src/manifest.json", to: "manifest.json" },
|
|
{ from: "src/images", to: "images/" },
|
|
{ from: "src/_locales", to: "_locales/" },
|
|
{ from: "src/fonts", to: "fonts/" }
|
|
],
|
|
}),
|
|
new CleanWebpackPlugin(),
|
|
],
|
|
}
|