Files
trezor-suite/packages/suite-data/tsconfig.json
Jiří Čermák e8dbc121b0 refactor: create @suite/intl package and update all related imports
- remove re-exports, use direct imports from @suite/intl
- resolve cir. dep. between suite-data and package/suite
- update imports from @suite-common/intl-types to @suite/intl
- update imports from src/support/messages to @suite/intl
- remove @suite-common/intl-types
- move Translation from @trezor/suite to the new package
2026-01-16 17:44:21 +01:00

20 lines
448 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"noImplicitAny": false,
"outDir": "./libDev"
},
"include": ["./src"],
"references": [
{
"path": "../../suite-common/suite-types"
},
{
"path": "../../suite-common/suite-utils"
},
{ "path": "../../suite/intl" },
{ "path": "../env-utils" },
{ "path": "../eslint" }
]
}