我有这个新的Ionic 2项目,我在代码完成方面遇到了麻烦,主要是自动导入和转到文件(例如,在templateUrl
值点击时)。
例如,来自@ angular / core的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新项目。