Files
trezor-suite/suite-common/token-definitions/tsconfig.json
Matej Kriz 6402bc7f1e chore(token-definitions): use simple json instead of jws for definitions
- The extra verification of jws signing is not needed and it adds a huge overhead especially on mobile (verification of jws is painfully slow there).
2025-09-24 11:38:49 +02:00

25 lines
741 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": { "outDir": "libDev" },
"references": [
{ "path": "../redux-utils" },
{ "path": "../wallet-config" },
{ "path": "../wallet-types" },
{ "path": "../wallet-utils" },
{
"path": "../../packages/blockchain-link"
},
{
"path": "../../packages/blockchain-link-types"
},
{
"path": "../../packages/blockchain-link-utils"
},
{ "path": "../../packages/connect" },
{ "path": "../../packages/env-utils" },
{ "path": "../../packages/type-utils" },
{ "path": "../../packages/utils" },
{ "path": "../../packages/eslint" }
]
}