2017-01-25 35 views
0

這可能是一個超級用戶的問題,如果它是道歉。離子2與netbeans不斷顯示錯誤

我一直在NetBeans中得到一些錯誤(我的IDE),它採用typescriptangular2插件

我得到的錯誤: picture of two errors 「爲裝飾的實驗支持,是一個功能.. ..「 和 」找不到名字'Promise'「

即使我得到這些錯誤,一切工作正常。所以我只是想找一種方法將它們移除,我已經讀了一些ts.config,但我找不到那個文件..

我的項目結構如下所示: enter image description here

我發現ts.config
這只是不是一個 「重要文件」 我想;-)

雖然它似乎沒有任何效果:

{ 
    "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 
    } 
} 
+0

你安裝了這個插件嗎[鏈接](http://plugins.netbeans.org/plugin/60605/typescript-editor)。也許netbeans無法識別打字稿。 –

+0

@aminarghavani這就是我所鏈接到的「打字稿」 - 鏈接;-) –

+0

當您運行'離子信息「時,您會得到什麼輸出?最近由離子產生的項目有一個'tsconfig.json',其中一個布爾值被設置爲'experimentalDecorators'。 (順便說一句,除了Promise之外,Visual Studio Code也有相同的問題,即使正確設置配置文件也不能解決它) – Ivaro18

回答

0

目前有沒有解決方案 netbeans插件的問題。

我已經更改爲Visual Studio代碼,它提供了一個很好的打印機編譯器。