Files
trezor-suite/suite-native/module-settings/tsconfig.json
Matej Kriz d8c780c32a fix(suite-native): submit coin enabling changes on button or leaving the screen
- If we change enabled networks directly by clicking the toggle, the app can became easily unresponsive (new discovery is triggered) and toggle states are lagging.
- But the reason for this change was remembered passhrase wallet - it's not nice to ask user for passhprase at the moment he click the coin toggle.
2025-06-24 13:49:31 +02:00

46 lines
1.4 KiB
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": { "outDir": "libDev" },
"references": [
{
"path": "../../suite-common/analytics"
},
{
"path": "../../suite-common/suite-config"
},
{
"path": "../../suite-common/suite-constants"
},
{
"path": "../../suite-common/suite-types"
},
{
"path": "../../suite-common/wallet-core"
},
{ "path": "../alerts" },
{ "path": "../analytics" },
{ "path": "../atoms" },
{ "path": "../biometrics" },
{ "path": "../coin-enabling" },
{ "path": "../config" },
{ "path": "../device-manager" },
{ "path": "../discovery" },
{ "path": "../feature-flags" },
{ "path": "../icons" },
{ "path": "../intl" },
{ "path": "../link" },
{ "path": "../module-connect-popup" },
{ "path": "../navigation" },
{ "path": "../settings" },
{ "path": "../storage" },
{ "path": "../theme" },
{ "path": "../toasts" },
{ "path": "../../packages/connect" },
{ "path": "../../packages/env-utils" },
{ "path": "../../packages/styles" },
{ "path": "../../packages/theme" },
{ "path": "../../packages/urls" }
],
"include": [".", "**/*.json"]
}