Having trouble with my app not loading in IE 11 after adding ngx-treeview.
Encountering the error (SCRIPT1002: Syntax error),
Unsure how to resolve this issue. Works fine in chrome and firefox, but in IE11 all I see is Loading... . Couldn't find browser compatibility on the library github page. Should I abandon using this library or is there a solution?
The package.json file contains:
"scripts": {
"ng": "ng",
"start": "ng serve --extract-css",
...
},
"dependencies": {
"@angular-slider/ngx-slider": "^2.0.3",
...
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.13",
...
"typescript": "~3.8.3"
},
"optionalDependencies": {}
}
and tsconfig.json:
{
"compileOnSave": false,
"compilerOptions": {
"downlevelIteration": true,
"importHelpers": true,
...
"baseUrl": "./"
}
}