Fixes entry point in webpack config to allow js and ts files

This commit is contained in:
Max Hoffmann 2023-09-25 06:59:00 -07:00
parent 7fdf8e0ab3
commit 49c207b973
No known key found for this signature in database
GPG Key ID: 3015B3271A63BCAE

View File

@ -27,7 +27,7 @@ function createBundleConfig(bundle: Bundle, {analyser}: Options) {
const config: Configuration = {
mode: 'production',
entry: `./src/${bundle.source}.js`,
entry: `./src/${bundle.source}`,
output: {
path: `${targetPath}${outputPath}`,
filename: `${bundle.filename}.js`,