diff options
author | bobzel <zzzman@gmail.com> | 2024-08-12 21:38:22 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-08-12 21:38:22 -0400 |
commit | b84bdc5a629dfa6310b24dd5eedee2843558b73a (patch) | |
tree | b22a0630991f39ed166de0599f9b14d3e9f13b2e /webpack.config.js | |
parent | 762ac2bf354e4cc2c4b15f42502da939f5061646 (diff) |
more any -> type fixes
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/webpack.config.js b/webpack.config.js index 9c74bf24e..e1afc64e5 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -53,8 +53,6 @@ module.exports = { viewer: ['./src/debug/Viewer.tsx', 'webpack-hot-middleware/client?reload=true'], repl: ['./src/debug/Repl.tsx', 'webpack-hot-middleware/client?reload=true'], test: ['./src/debug/Test.tsx', 'webpack-hot-middleware/client?reload=true'], - inkControls: ['./src/mobile/InkControls.tsx', 'webpack-hot-middleware/client?reload=true'], - mobileInterface: ['./src/client/views/Main.tsx', 'webpack-hot-middleware/client?reload=true'], }, devtool: 'source-map', output: { @@ -119,6 +117,10 @@ module.exports = { { loader: 'sass-loader' }, ], }, + { + test: /\.(txt|d)$/i, + type: 'asset/source', + }, // -------- // SCSS MODULES - all have .module. in their name and can export to .tsx |