2022-06-08 02:25:35 +02:00
|
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
2022-11-02 05:18:40 +01:00
|
|
|
const LodashModuleReplacementPlugin = require('lodash-webpack-plugin');
|
2022-06-08 02:25:35 +02:00
|
|
|
const path = require("path");
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
mode: "development",
|
|
|
|
entry: {
|
2023-08-03 23:29:06 +02:00
|
|
|
prompt: ["./src/prompt.ts", "./src/prompt.less"],
|
2022-06-08 02:25:35 +02:00
|
|
|
},
|
|
|
|
output: {
|
|
|
|
path: path.resolve(__dirname, "dist"),
|
2022-11-02 05:18:40 +01:00
|
|
|
filename: "[name].js",
|
2022-06-08 02:25:35 +02:00
|
|
|
},
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.tsx?$/,
|
|
|
|
// exclude: /node_modules/,
|
|
|
|
use: {
|
|
|
|
loader: "babel-loader",
|
|
|
|
options: {
|
|
|
|
presets: [
|
|
|
|
[
|
|
|
|
"@babel/preset-env",
|
|
|
|
{
|
|
|
|
targets: "defaults and not ie > 0 and not op_mini all and not op_mob > 0 and not kaios > 0 and not and_qq > 0 and not and_uc > 0 and not baidu > 0",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
"@babel/preset-react",
|
|
|
|
"@babel/preset-typescript"],
|
|
|
|
plugins: [
|
|
|
|
["@babel/transform-runtime", {"regenerator": true}],
|
|
|
|
"@babel/plugin-transform-react-jsx",
|
|
|
|
["@babel/plugin-proposal-decorators", { "legacy": true }],
|
|
|
|
["@babel/plugin-proposal-class-properties", { "loose": true }],
|
|
|
|
["@babel/plugin-proposal-private-methods", { "loose": true }],
|
|
|
|
["@babel/plugin-proposal-private-property-in-object", { "loose": true }],
|
|
|
|
"babel-plugin-jsx-control-statements",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.css$/,
|
|
|
|
use: [
|
|
|
|
"style-loader",
|
|
|
|
"css-loader",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.less$/,
|
|
|
|
use: [
|
|
|
|
{loader: MiniCssExtractPlugin.loader},
|
|
|
|
"css-loader",
|
|
|
|
"less-loader"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
plugins: [
|
2022-11-01 08:07:25 +01:00
|
|
|
new MiniCssExtractPlugin({filename: "[name].css", ignoreOrder: true}),
|
2022-11-02 05:18:40 +01:00
|
|
|
new LodashModuleReplacementPlugin(),
|
2022-06-08 02:25:35 +02:00
|
|
|
],
|
|
|
|
resolve: {
|
|
|
|
extensions: ['.ts', '.tsx', '.js', '.mjs', '.cjs', '.wasm', '.json', '.less', '.css']
|
|
|
|
},
|
2023-01-17 18:59:31 +01:00
|
|
|
};
|