diff options
author | bobzel <zzzman@gmail.com> | 2024-08-08 12:27:40 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-08-08 12:27:40 -0400 |
commit | 4574b7f03ccc85c4bebdbfd9475788456086704f (patch) | |
tree | d23d30343541b9af029ef418492d629d3cc710d7 /webpack.config.js | |
parent | e1db06d59d580aa640212a0d3a6aeecb9122bdf0 (diff) |
many changes to add typing in place of 'any's etc
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/webpack.config.js b/webpack.config.js index 58df9a57d..9c74bf24e 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,8 +1,7 @@ -/* eslint-disable node/no-unpublished-require */ +/* eslint-disable @typescript-eslint/no-var-requires */ const path = require('path'); const webpack = require('webpack'); const HtmlWebpackPlugin = require('html-webpack-plugin'); -// eslint-disable-next-line import/no-extraneous-dependencies // const ESLintPlugin = require('eslint-webpack-plugin'); // const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); const { parsed } = require('dotenv').config(); |