Computer/webpack.config.js

55 lines
1,004 B
JavaScript
Raw Normal View History

2024-03-07 04:41:02 +00:00
/* eslint-disable @typescript-eslint/no-var-requires */
/* eslint-disable no-undef */
2024-02-15 03:54:23 +00:00
const path = require("path");
2024-03-07 04:41:02 +00:00
const CopyPlugin = require("copy-webpack-plugin");
2024-02-15 03:54:23 +00:00
const config = {
entry: "./src/index.ts",
module: {
rules: [
{
test: /\.ts$/,
use: "ts-loader",
exclude: /node_modules/,
},
{
test: /\.html/,
2024-02-21 05:45:14 +00:00
type: "asset/resource",
},
{
test: /\.s[ac]ss$/i,
use: [
// Creates `style` nodes from JS strings
"style-loader",
// Translates CSS into CommonJS
"css-loader",
// Compiles Sass to CSS
"sass-loader",
],
},
2024-02-15 03:54:23 +00:00
],
},
resolve: {
2024-02-21 05:45:14 +00:00
extensions: [".ts", ".scss", ".css"],
2024-02-15 03:54:23 +00:00
},
output: {
filename: "main.js",
path: path.resolve(__dirname, "dist"),
},
2024-03-07 04:41:02 +00:00
plugins: [
new CopyPlugin({
patterns: [{ from: "./src/include", to: "./" }],
}),
],
2024-02-15 03:54:23 +00:00
};
module.exports = (env, argv) => {
if (argv.mode === "development") {
config.devtool = "source-map";
}
if (argv.mode === "production") {
}
return config;
2024-02-21 05:45:14 +00:00
};