Hello everybody,
I’m front of a big problem in my solution and i’m unable to fix it after hours searching on the web, thus i choose to post this new topic to ask some help.
I’m pretty new on Meteor (2 month), so there is things that i’ve never seen
My Meteor version is 1.5.1
My IE version is 11.483.15063.0
Here’s my problem :
Yesterday I tryed to run my application on IE11 and the app crash at the beginning. My first problem was that arrow functions was not reconized by the browser. So I enabled “babel” compiler in order to get ES5 output.
Here’s my babel config (package.json) :
{
"name": "jobdeal",
"private": true,
"babel": {
"presets": [
"env", "stage-1"
],
"plugins": [
[
"transform-runtime",
{
"helpers": false,
"polyfill": true,
"regenerator": true,
"moduleName": "babel-runtime"
}
],
"transform-es2015-arrow-functions"
]
},
"scripts": {
"start": "meteor --settings settings.json"
},
"devDependencies": {
"@chtijs/eslint-config": "^1.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-meteor": "^4.0.1",
"eslint-plugin-react": "^6.10.0"
},
"dependencies": {
"algoliasearch": "^3.22.1",
"animate.css": "^3.5.2",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-1": "^6.24.1",
"babel-runtime": "^6.25.0",
"bcrypt": "^1.0.2",
"bootstrap": "^3.3.7",
"class-autobind": "^0.1.4",
"classnames": "^2.2.5",
"fullcalendar": "^3.3.1",
"immutable": "^3.8.1",
"jquery": "^2.2.4",
"lodash": "^4.17.4",
"meteor-node-stubs": "^0.2.5",
"moment": "^2.17.1",
"node-mailjet": "^1.1.0",
"node-slack": "0.0.7",
"please-wait": "0.0.5",
"promise": "^7.1.1",
"raleway-webfont": "^3.0.1",
"random-token": "0.0.8",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-addons-pure-render-mixin": "^15.4.2",
"react-addons-transition-group": "^15.4.2",
"react-addons-update": "^15.4.2",
"react-boostrap-carousel": "^2.0.4",
"react-bootstrap": "^0.30.7",
"react-bootstrap-modal": "^3.0.1",
"react-confirm": "^0.1.14",
"react-datetime": "^2.8.9",
"react-dom": "^15.4.2",
"react-geosuggest": "^2.3.6",
"react-modal": "^1.7.7",
"react-parallax": "^1.2.3",
"react-router": "^3.0.2",
"react-select": "^1.0.0-rc.3",
"react-table": "^5.3.4",
"react-typeahead": "^2.0.0-alpha.5",
"reactjs-bootstrap-table": "^1.0.12",
"reactstrap": "^4.3.0",
"string": "^3.3.3",
"throttle-debounce": "^1.0.1"
}
}
This config change my errors in console, now the console does not pop syntax error, but i have unknown package variable.
Here the screen of the new errors:
I keep searching, but i hope one of you have ever encouter this problem and would be able to help me.
Thank’s for reading and for help.
Best regards.