aboutsummaryrefslogtreecommitdiffstats
path: root/uidev/webpack.config.js
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-10-15 09:48:06 +0200
committerLibravatar GitHub <noreply@github.com>2021-10-15 09:48:06 +0200
commit14d2364fc69e0222133115c55a36286986006098 (patch)
tree9e9b3c41ef742bbe87ca1632b292c67043051957 /uidev/webpack.config.js
parent5.6.3-nightly.34 [skip ci] (diff)
downloadferdium-app-14d2364fc69e0222133115c55a36286986006098.tar.gz
ferdium-app-14d2364fc69e0222133115c55a36286986006098.tar.zst
ferdium-app-14d2364fc69e0222133115c55a36286986006098.zip
chore: update eslint setup (#2074)
Diffstat (limited to 'uidev/webpack.config.js')
-rw-r--r--uidev/webpack.config.js12
1 files changed, 7 insertions, 5 deletions
diff --git a/uidev/webpack.config.js b/uidev/webpack.config.js
index 74ea870ef..faabac784 100644
--- a/uidev/webpack.config.js
+++ b/uidev/webpack.config.js
@@ -4,11 +4,13 @@ const HtmlWebpackPlugin = require('html-webpack-plugin');
4module.exports = { 4module.exports = {
5 entry: './src/index.tsx', 5 entry: './src/index.tsx',
6 module: { 6 module: {
7 rules: [{ 7 rules: [
8 test: /\.tsx?$/, 8 {
9 use: 'ts-loader', 9 test: /\.tsx?$/,
10 exclude: /node_modules/, 10 use: 'ts-loader',
11 }], 11 exclude: /node_modules/,
12 },
13 ],
12 }, 14 },
13 resolve: { 15 resolve: {
14 extensions: ['.tsx', '.ts', '.js'], 16 extensions: ['.tsx', '.ts', '.js'],