mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2024-11-13 01:53:57 +00:00
33 lines
767 B
TypeScript
33 lines
767 B
TypeScript
|
const webpack = require("webpack");
|
||
|
const path = require("path");
|
||
|
const nodeExternals = require("webpack-node-externals");
|
||
|
|
||
|
module.exports = {
|
||
|
entry: ["webpack/hot/poll?100", "./src/index.ts"],
|
||
|
watch: true,
|
||
|
target: "node",
|
||
|
externals: [
|
||
|
nodeExternals({
|
||
|
whitelist: ["webpack/hot/poll?100"]
|
||
|
})
|
||
|
],
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /.tsx?$/,
|
||
|
use: "ts-loader",
|
||
|
exclude: /node_modules/
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
mode: "development",
|
||
|
resolve: {
|
||
|
extensions: [".tsx", ".ts", ".js"]
|
||
|
},
|
||
|
plugins: [new webpack.HotModuleReplacementPlugin()],
|
||
|
output: {
|
||
|
path: path.join(__dirname, "dist"),
|
||
|
filename: "index.js"
|
||
|
}
|
||
|
};
|