aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authordavidpkj <davidpenkow1@gmail.com>2022-12-13 15:02:28 +0100
committerdavidpkj <davidpenkow1@gmail.com>2022-12-13 15:02:28 +0100
commit500508a734df23069eea44cb996ae260d178f2e0 (patch)
treeb062df963fe9b244165917715552e4afdf147b46 /webpack.config.js
parentb9cb4c2b4b7323f8df8fa87023c41ce8abfff9ae (diff)
Add: TS & WP config
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/webpack.config.js b/webpack.config.js
new file mode 100644
index 0000000..c5b488f
--- /dev/null
+++ b/webpack.config.js
@@ -0,0 +1,22 @@
+const path = require("path");
+
+module.exports = {
+ mode: "development",
+ entry: "./src/index.ts",
+ output: {
+ filename: "index.js",
+ path: path.resolve(__dirname, "dist"),
+ },
+ module: {
+ rules: [
+ {
+ test: /\.tsx?$/,
+ use: 'ts-loader',
+ exclude: /node_modules/,
+ },
+ ],
+ },
+ resolve: {
+ extensions: ['.tsx', '.ts', '.js'],
+ },
+}; \ No newline at end of file