Idea抱怨有效的打字稿代码

时间:2016-12-08 11:24:34

标签: javascript angularjs typescript intellij-idea

我尝试编写我的第一个有角度的2 hello world应用程序。

我有以下项目结构: enter image description here

如果编辑器altgough代码中的错误正常工作,我会看到很多。

错误文字:

除非提供--module标志,否则

无法编译模块 装饰器仅在定位ecmascript 5及更高版本时可用。

我在配置中搜索并仅查看以下内容:

enter image description here

请帮助避免错误。

ts.json:

{
  "compileOnSave": false,
  "compilerOptions": {
    "declaration": false,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "module": "commonjs",
    "moduleResolution": "node",
    "outDir": "../dist/out-tsc-e2e",
    "sourceMap": true,
    "target": "es5",
    "typeRoots": [
      "../node_modules/@types"
    ]
  }
}

0 个答案:

没有答案