0
這可能是一個超級用戶的問題,如果它是道歉。離子2與netbeans不斷顯示錯誤
我一直在NetBeans中得到一些錯誤(我的IDE),它採用typescript和angular2插件
我得到的錯誤: 「爲裝飾的實驗支持,是一個功能.. ..「 和 」找不到名字'Promise'「
即使我得到這些錯誤,一切工作正常。所以我只是想找一種方法將它們移除,我已經讀了一些ts.config,但我找不到那個文件..
我發現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
}
}
你安裝了這個插件嗎[鏈接](http://plugins.netbeans.org/plugin/60605/typescript-editor)。也許netbeans無法識別打字稿。 –
@aminarghavani這就是我所鏈接到的「打字稿」 - 鏈接;-) –
當您運行'離子信息「時,您會得到什麼輸出?最近由離子產生的項目有一個'tsconfig.json',其中一個布爾值被設置爲'experimentalDecorators'。 (順便說一句,除了Promise之外,Visual Studio Code也有相同的問題,即使正確設置配置文件也不能解決它) – Ivaro18