我使用MVC创建了一个Angular 4应用程序,VS 2015。
当我在Chrome上浏览应用程序时,它可以正常工作,但在IE 11上它会抛出异常: -
attribute
我的tsconfing.json是: -
XHR error: (404 Not Found) loading http://localhost/src/main.js
Instantiating http://localhost/src/main.js
Loading src/main.js
文件夹结构
{
"compileOnSave": true,
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [ "es2015", "dom" ],
"noImplicitAny": false,
"suppressImplicitAnyIndexErrors": true,
"noStrictGenericChecks": true,
"skipLibCheck": true
},
"exclude": [
"node_modules/*"
]
}
如果您遇到类似的问题,请告诉我。
答案 0 :(得分:0)
您必须在polyfill.ts文件中取消注释polyfills IE行,然后再次运行您的服务器