I’m currently attempting to use Chart.js
within my react application but when I go to build my application I’m presented with this error
JavaScript
x
14
14
1
ERROR in ./node_modules/chart.js/dist/chart.esm.js
2
Module parse failed: D:MyAppnode_moduleschart.jsdistchart.esm.js Unexpected token (6613:12)
3
You may need an appropriate loader to handle this file type.
4
| if (intermediateIndex1 !== startIndex && intermediateIndex1 !== lastIndex) {
5
| decimated.push({
6
| data[intermediateIndex1],
7
| x: avgX,
8
| });
9
@ ./src/imports/Dashboard/Dashboard.js 21:12-31
10
@ ./src/App.js
11
@ ./src/index.js
12
@ multi babel-polyfill ./src/index.js
13
14
I tried researching online to see if anyone else has had the same issue, but I had no luck.
Below is my Webpack config file:
JavaScript
1
36
36
1
const path = require('path');
2
3
module.exports = {
4
entry: ['babel-polyfill', './src/index.js'],
5
output: {
6
path: path.join(__dirname, 'public'),
7
filename: 'bundle.js'
8
},
9
module: {
10
rules: [{
11
loader: 'babel-loader',
12
test: /.jsx?$/,
13
exclude: /node_modules/
14
}, {
15
test: /.s?css$/,
16
use: [
17
'style-loader',
18
'css-loader',
19
'sass-loader'
20
]
21
},{
22
test: /.(jpe?g|png|gif|svg|mp3)$/i,
23
loaders: [
24
'file-loader?hash=sha512&digest=hex&name=[hash].[ext]',
25
'image-webpack-loader?bypassOnDebug&optimizationLevel=7&interlaced=false'
26
]
27
}
28
]
29
},
30
devtool: 'cheap-module-eval-source-map',
31
devServer: {
32
contentBase: path.join(__dirname, 'public'),
33
historyApiFallback: true
34
}
35
};
36
And here is my bablerc file
JavaScript
1
12
12
1
{
2
"presets": [
3
"env",
4
"react",
5
"stage-0"
6
],
7
"plugins": [
8
"transform-class-properties"
9
]
10
}
11
12
This is the list of my dependencies that are installed
JavaScript
1
49
49
1
"dependencies": {
2
"@babel/polyfill": "^7.0.0",
3
"aws-sdk": "^2.580.0",
4
"axios": "^0.19.0",
5
"babel-cli": "^6.26.0",
6
"babel-core": "^6.26.3",
7
"babel-loader": "7.1.1",
8
"babel-plugin-transform-class-properties": "6.24.1",
9
"babel-polyfill": "^6.26.0",
10
"babel-preset-env": "^1.7.0",
11
"babel-preset-react": "6.24.1",
12
"babel-preset-stage-0": "^6.24.1",
13
"bcryptjs": "^2.4.3",
14
"body-parser": "^1.18.2",
15
"chart.js": "^3.1.0",
16
"core-js": "^2.5.3",
17
"css-loader": "0.28.4",
18
"express": "latest",
19
"file-loader": "^1.1.5",
20
"google-maps-react": "^2.0.2",
21
"image-webpack-loader": "^3.4.2",
22
"immutability-helper": "^2.4.0",
23
"jquery": "^3.4.1",
24
"jsbarcode": "^3.11.0",
25
"jsonwebtoken": "^8.1.0",
26
"lodash": "^4.17.14",
27
"moment": "^2.22.2",
28
"node-sass": "^4.12.0",
29
"node-schedule": "^1.3.2",
30
"nodemailer": "^4.7.0",
31
"normalize.css": "7.0.0",
32
"npm": "^6.10.0",
33
"papaparse": "^5.1.1",
34
"promise-mysql": "^3.1.0",
35
"prop-types": "^15.6.0",
36
"react": "^16.0.0",
37
"react-csv": "^1.0.14",
38
"react-dom": "^16.0.0",
39
"react-router-dom": "4.2.2",
40
"react-scripts": "1.0.14",
41
"sass-loader": "6.0.6",
42
"socket.io": "^2.0.3",
43
"style-loader": "0.18.2",
44
"twilio": "^3.24.0",
45
"validator": "8.0.0",
46
"webpack": "3.1.0",
47
"webpack-dev-server": "2.5.1"
48
},
49
I expected the error to tell me what loader I needed to install to use with Chart.js
but it does not specify. If anyone knows which loader I need to install and where I should put it in my files that would be awesome. TIA!
Advertisement
Answer
Chart.js version 3 is not compatible. Change it to ^2.9.4. The same problem as you and I have been solved.