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,9 +1,9 @@
import { Component, ChangeDetectionStrategy, OnChanges, Input, OnInit, ChangeDetectorRef, OnDestroy } from '@angular/core';
import { Transaction } from '../../interfaces/electrs.interface';
import { StateService } from '../../services/state.service';
import { Transaction } from '@app/interfaces/electrs.interface';
import { StateService } from '@app/services/state.service';
import { Subscription } from 'rxjs';
import { BlockExtended } from '../../interfaces/node-api.interface';
import { CacheService } from '../../services/cache.service';
import { BlockExtended } from '@app/interfaces/node-api.interface';
import { CacheService } from '@app/services/cache.service';
@Component({
selector: 'app-tx-fee-rating',