fix incorrect imports in tabby-ssh

This commit is contained in:
Eugene
2026-05-04 16:55:47 +02:00
parent 5f047dee33
commit 56908f473c
2 changed files with 2 additions and 5 deletions
@@ -3,12 +3,11 @@ import { Component, ViewChild } from '@angular/core'
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
import { firstBy } from 'thenby'
import { FileProvidersService, Platform, HostAppService, PromptModalComponent, PartialProfile, ProfilesService, ProfileSettingsComponent } from 'tabby-core'
import { FileProvidersService, Platform, HostAppService, PromptModalComponent, PartialProfile, ProfilesService, ProfileSettingsComponent, FullyDefined, ProxifiedConfig } from 'tabby-core'
import { LoginScriptsSettingsComponent } from 'tabby-terminal'
import { PasswordStorageService } from '../services/passwordStorage.service'
import { ForwardedPortConfig, SSHAlgorithmType, SSHProfile } from '../api'
import { supportedAlgorithms } from '../algorithms'
import { FullyDefined, ProxifiedConfig } from 'tabby-core/src/services/config.service'
import { SSHProfilesService } from '../profiles'
/** @hidden */
+1 -3
View File
@@ -1,7 +1,6 @@
{
"extends": "../tsconfig.json",
"exclude": ["node_modules", "dist", "typings"],
"include": ["src"],
"compilerOptions": {
"baseUrl": "src",
"emitDeclarationOnly": true,
@@ -10,7 +9,6 @@
"paths": {
"tabby-*": ["../../tabby-*"],
"*": ["../../app/node_modules/*"]
},
"types": ["node"]
}
}
}