Note: If your issue/feature-request/question is regarding the AWS AppSync service, please log it in the
official AWS AppSync forum
Do you want to request a feature or report a bug?
Bug
What is the current behavior?
App works fine on Chrome, Edge, Firefox, not on IE. it produces 2 errors:
One is pointing to vendor AnimationBuilder
And the other one is pointing to my app routing:
not sure if it correctly parsed the main.js and points to the correct file, but in chrome when opening main.js it does look like it is pointing in the right direction:
/*line 145-->*/ let AppRoutingModule = class AppRoutingModule {
};
AppRoutingModule = __decorate([
Object(_angular_core__WEBPACK_IMPORTED_MODULE_0__["NgModule"])({
imports: [_angular_router__WEBPACK_IMPORTED_MODULE_1__["RouterModule"].forRoot(routes)],
exports: [_angular_router__WEBPACK_IMPORTED_MODULE_1__["RouterModule"]]
})
], AppRoutingModule);
What is the expected behavior?
A beautifully runable project!
Which versions and which environment (browser, react-native, nodejs) / OS are affected by this issue? Did this work in previous versions?
version: Angular 7.0.0 (I did not test previous versions).
environment: IE11 browser.
tsconfig.json: I did play around with this because I am still receiving intellisense (VS2017) errors while according to several blogs this config should be fine.
Like the documentation in the polyfills.ts describes, I added a much of packages which should support IE11.
/** IE9, IE10 and IE11 requires all of the following polyfills. **/
import 'core-js/es6/symbol';
import 'core-js/es6/object';
import 'core-js/es6/function';
import 'core-js/es6/parse-int';
import 'core-js/es6/parse-float';
import 'core-js/es6/number';
import 'core-js/es6/math';
import 'core-js/es6/string';
import 'core-js/es6/date';
import 'core-js/es6/array';
import 'core-js/es6/regexp';
import 'core-js/es6/map';
import 'core-js/es6/weak-map';
import 'core-js/es6/set';
// import 'core-js/es6/array';
import 'classlist.js'; // Run `npm install --save classlist.js`.
import 'web-animations-js'; // Run `npm install --save web-animations-js`.
If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem.
I have attempted to reproduce the error in a plain app. So far I was not able to reproduce it so I am continue doing so to find out what is causing the issue. In the meantime I hope someone is spotting a mistake I have made.
Do you want to request a feature or report a bug? Bug What is the current behavior? App works fine on Chrome, Edge, Firefox, not on IE. it produces 2 errors:
One is pointing to vendor AnimationBuilder
And the other one is pointing to my app routing:
not sure if it correctly parsed the main.js and points to the correct file, but in chrome when opening main.js it does look like it is pointing in the right direction:
What is the expected behavior? A beautifully runable project! Which versions and which environment (browser, react-native, nodejs) / OS are affected by this issue? Did this work in previous versions?
version: Angular 7.0.0 (I did not test previous versions). environment: IE11 browser.
package.json
angular.json is standard, nothing change except for adding some styles and scripts:
tsconfig.json: I did play around with this because I am still receiving intellisense (VS2017) errors while according to several blogs this config should be fine.
Like the documentation in the polyfills.ts describes, I added a much of packages which should support IE11.
If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem.
I have attempted to reproduce the error in a plain app. So far I was not able to reproduce it so I am continue doing so to find out what is causing the issue. In the meantime I hope someone is spotting a mistake I have made.