Files
trezor-suite/packages/connect-explorer/tsconfig.json
2026-02-09 09:31:37 +01:00

36 lines
980 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"types": ["web", "node", "chrome"],
"lib": ["dom", "dom.iterable", "esnext"],
"emitDeclarationOnly": false,
"noEmit": true,
"baseUrl": ".",
"paths": {
"@suite-common/icons/src/icons": [
"src/icons/minimalIcons.ts"
]
},
"plugins": [
{ "name": "typescript-styled-plugin" }
]
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"references": [
{ "path": "../components" },
{ "path": "../connect-common" },
{ "path": "../connect-explorer-theme" },
{ "path": "../connect-mobile" },
{ "path": "../connect-web" },
{ "path": "../connect-webextension" },
{ "path": "../protobuf" },
{ "path": "../schema-utils" },
{ "path": "../theme" },
{ "path": "../eslint" }
]
}