Hi All
This is getting me to pull my hair out.
Using the Angular CLI i installed the boiler plate app using - ng new projectname
I am using no Angular Animation nor am i working with SVG's. Its a plain jane Hello World type app
I have uncommented those lines for Internet Explorer in the polyfill.js file. It works fine in IE 11, but not in 10 or 9


Here is my tsconfig.json file:
Angular suppose to cater for I.E 9 and 10
Thanks
This is getting me to pull my hair out.
Using the Angular CLI i installed the boiler plate app using - ng new projectname
I am using no Angular Animation nor am i working with SVG's. Its a plain jane Hello World type app
I have uncommented those lines for Internet Explorer in the polyfill.js file. It works fine in IE 11, but not in 10 or 9


Here is my tsconfig.json file:
Code:
"compilerOptions": {
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2017",
"dom"
]
}
}
Angular suppose to cater for I.E 9 and 10
Thanks