Skip to content
This repository has been archived by the owner on Aug 6, 2022. It is now read-only.

Commit

Permalink
fix webpack config
Browse files Browse the repository at this point in the history
Fixes:

	Module not found: Error: Can't resolve '../dist/helpers.esm' in 'node_modules/chart.js/helpers'
  • Loading branch information
vmiklos committed Jan 30, 2022
1 parent 4c3f881 commit 843f55e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const path = require('path');

module.exports = {
entry : './src/browser/main.ts',
resolve : {extensions : [ ".ts" ]},
resolve : {extensions : [ ".ts", ".js" ]},
module : {
rules : [ {
use : "ts-loader",
Expand Down

0 comments on commit 843f55e

Please sign in to comment.