如何停止 Ionic VS Code 扩展自动添加 import 语句

问题描述 投票:0回答:2

每次我在 Angular 应用程序中保存 .html 文件时,Ionic 扩展都会将此行添加到相应的 .ts 文件中:

import { addIcons } from "ionicons";

虽然我在开发的其他应用程序中使用了 Ionic,但我当前正在开发的应用程序并未使用 Ionic。这是package.json

{
  "name": "xxx",
  "version": "0.0.1",
  "scripts": {
    "ng": "ng",
    "build": "build:development",
    "watch": "ng build --watch --configuration development",
    "start": "ng serve --configuration=development",
    "start:production": "ng serve --configuration=production",
    "build:development": "ng build --configuration=development --base-href=./ --aot --optimization",
    "build:production": "ng build --configuration=production --output-path=Client/ --base-href=./ --aot --optimization",
    "test": "ng test"
  },
  "private": true,
  "dependencies": {
    "@angular/animations": "^18.1.0",
    "@angular/cdk": "^18.1.3",
    "@angular/common": "^18.1.0",
    "@angular/compiler": "^18.1.0",
    "@angular/core": "^18.1.0",
    "@angular/forms": "^18.1.0",
    "@angular/material": "^18.1.3",
    "@angular/platform-browser": "^18.1.0",
    "@angular/platform-browser-dynamic": "^18.1.0",
    "@angular/router": "^18.1.0",
    "rxjs": "~7.8.0",
    "tslib": "^2.3.0",
    "zone.js": "~0.14.3"
  },
  "devDependencies": {
    "@angular-devkit/build-angular": "^18.1.3",
    "@angular/cli": "^18.1.3",
    "@angular/compiler-cli": "^18.1.0",
    "@types/jasmine": "~5.1.0",
    "jasmine-core": "~5.1.0",
    "karma": "~6.4.0",
    "karma-chrome-launcher": "~3.2.0",
    "karma-coverage": "~2.2.0",
    "karma-jasmine": "~5.1.0",
    "karma-jasmine-html-reporter": "~2.1.0",
    "typescript": "~5.5.2"
  }
}

看起来我已经安装了 Ionic v1.93.1。

我使用的是 Angular 18 和材质,不知怎的,我猜 Ionic 认为 mat-icon 是一个离子组件,因此添加了 import 语句。

我查看了 VS Code 中的 ionic 设置,没有任何方法可以阻止此功能。

请告诉我是否有办法阻止此行为(无需卸载或禁用 Ionic 扩展)。

angular ionic-framework vscode-extensions
2个回答
1
投票

我遇到了这个问题,它是由“官方离子扩展”引起的。我刚刚禁用了该插件,问题就解决了(我不在离子项目中)。


0
投票

这不是由Visual Studio代码控制的吗?

您可以通过在文件>首选项>设置下搜索“自动”来关闭此功能,然后通过“自动导入”关闭复选框。

© www.soinside.com 2019 - 2024. All rights reserved.