Files
trezor-suite/suite-native/formatters/tsconfig.json
Matej Kriz 664e558504 fix(suite-native): fix address formatter
-  It was not working for account labels because it was using the address as the accountKey.
- The last change caused it to crash.
-  Removing the old, non-functional functionality. AddressFormatter can be merged with AddressLabel as a follow-up.
2026-02-09 12:35:34 +01:00

34 lines
927 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": { "outDir": "libDev" },
"references": [
{
"path": "../../suite-common/formatters"
},
{
"path": "../../suite-common/suite-types"
},
{
"path": "../../suite-common/wallet-config"
},
{
"path": "../../suite-common/wallet-core"
},
{
"path": "../../suite-common/wallet-utils"
},
{ "path": "../atoms" },
{ "path": "../intl" },
{ "path": "../tokens" },
{ "path": "../../packages/env-utils" },
{ "path": "../../packages/protobuf" },
{ "path": "../../packages/styles" },
{ "path": "../../packages/theme" },
{ "path": "../../packages/utils" },
{
"path": "../../suite-common/wallet-types"
},
{ "path": "../test-utils" }
]
}