compile typescript抛出使用装饰器的异常

时间:2016-02-22 23:02:49

标签: typescript visual-studio-2015 angular asp.net-core

我在asp.net核心项目中使用Visual Studio 2015和TS 1.7.5。

我已经设置了一个角度为2 5分钟的初学者。教程。

当我尝试编译脚本文件夹时出现此异常:

为什么警告导致进程失败?

enter image description here

app.component.ts

import {Component} from 'angular2/core';

@Component({
    selector: 'my-app',
    template: '<h1>My First Angular 2 App</h1>'
})
export class AppComponent { }

tsconfig.json

{
  "compilerOptions": {
    "target": "es5",
    "module": "commonjs",
    "moduleResolution": "node",
    "sourceMap": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "removeComments": false,
    "noImplicitAny": false
  },
  "exclude": [
    "node_modules",
    "typings/main",
    "typings/main.d.ts"
  ]

}

1 个答案:

答案 0 :(得分:0)

你的tsconfig看起来是正确的:

"experimentalDecorators": true,

我怀疑你有两个 tsconfig.json文件,如果它们不正确则有一个。