Use typescript path aliases for build time import path resolution

This commit is contained in:
wiz
2024-10-22 21:05:01 +09:00
parent 5fba9595af
commit 133df2e4be
226 changed files with 1274 additions and 1269 deletions

View File

@@ -1,5 +1,5 @@
import { Price } from '../services/price.service';
import { IChannel } from './node-api.interface';
import { Price } from '@app/services/price.service';
import { IChannel } from '@app/interfaces/node-api.interface';
export interface Transaction {
txid: string;
@@ -244,4 +244,4 @@ export interface Utxo {
vout: number;
value: number;
status: Status;
}
}

View File

@@ -1,6 +1,6 @@
import { SafeResourceUrl } from '@angular/platform-browser';
import { ILoadingIndicators } from '../services/state.service';
import { Transaction } from './electrs.interface';
import { ILoadingIndicators } from '@app/services/state.service';
import { Transaction } from '@app/interfaces/electrs.interface';
import { Acceleration, BlockExtended, DifficultyAdjustment, RbfTree, TransactionStripped } from './node-api.interface';
export interface WebsocketResponse {
@@ -144,4 +144,4 @@ export interface HealthCheckHost {
link?: string;
statusPage?: SafeResourceUrl;
flag?: string;
}
}