From 263b911363fadd5c0448888938b82d6e366f8dfe Mon Sep 17 00:00:00 2001 From: Nikita Tokarchuk Date: Fri, 3 Dec 2021 04:30:31 +0100 Subject: [PATCH] Create webpack empty configuration --- package.json | 5 +++++ webpack.config.js | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 webpack.config.js diff --git a/package.json b/package.json index 6f92b48..84ddebb 100644 --- a/package.json +++ b/package.json @@ -5,9 +5,14 @@ "private": true, "author": "", "scripts": { + "build": "webpack", + "watch": "webpack watch", }, "license": "MIT", "devDependencies": { + "webpack": "^5.63.0", + "webpack-cli": "^4.9.1", + "webpack-dev-server": "^4.4.0" }, "dependencies": { } diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 0000000..abcd19e --- /dev/null +++ b/webpack.config.js @@ -0,0 +1,5 @@ + +module.exports = { + module: { + }, +};