正确设置Intellij打字稿代码完成

时间:2017-05-09 23:51:03

标签: angular typescript intellij-idea ionic2

我有这个新的Ionic 2项目,我在代码完成方面遇到了麻烦,主要是自动导入和转到文件(例如,在templateUrl值点击时)。

例如,来自@ angular / core的OnInit的建议框就是这样的:

Code Completion for OnInit 现在,如果我尝试 ctrl + 点击 lot-zone-detail.page.html"链接",它也不会工作。

我想知道如何正确设置这一切,我的猜测是它与tsconfig.json文件有关。

这是我的:

    {
      "compilerOptions": {
      "allowSyntheticDefaultImports": true,
      "declaration": false,
      "emitDecoratorMetadata": true,
      "experimentalDecorators": true,
      "lib": [
        "dom",
        "es2015"
      ],
      "module": "es2015",
      "moduleResolution": "node",
      "sourceMap": true,
      "target": "es5"
    },
    "include": [
      "src/**/*.ts"
    ],
    "exclude": [
      "node_modules"
    ],
    "compileOnSave": false,
    "atom": {
      "rewriteTsconfig": false
    }
  }

默认来自离子cli新项目。

这是我的Intellij配置:
Intellij config

0 个答案:

没有答案