Use typescript path aliases for build time import path resolution
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user