带有 netbeans 的 ionic 2 不断显示错误
ionic 2 with netbeans keeps showing errors
这可能是一个超级用户问题,如果是的话,我们深表歉意。
我在使用 typescript and angular2 插件
的 netbeans(我的 IDE)中不断遇到一些错误
我遇到的错误:
"Experimental support for decorators is a feature...."
和
"Cannot find name 'Promise'"
尽管我遇到了这些错误,但一切正常。所以我只是在寻找一种方法来删除它们的显示,我已经阅读了一些 ts.config,但我找不到那个文件..
我的项目结构如下所示:
我找到了 ts.config
我猜这不是 "important file" ;-)
虽然好像没什么效果:
{
"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
}
}
目前没有解决方案 netbeans 插件的问题。
我已更改为 Visual Studio 代码,它提供了一个很好的打字稿编译器。
这可能是一个超级用户问题,如果是的话,我们深表歉意。
我在使用 typescript and angular2 插件
的 netbeans(我的 IDE)中不断遇到一些错误我遇到的错误:
尽管我遇到了这些错误,但一切正常。所以我只是在寻找一种方法来删除它们的显示,我已经阅读了一些 ts.config,但我找不到那个文件..
我的项目结构如下所示:
我找到了 ts.config
我猜这不是 "important file" ;-)
虽然好像没什么效果:
{
"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
}
}
目前没有解决方案 netbeans 插件的问题。
我已更改为 Visual Studio 代码,它提供了一个很好的打字稿编译器。