mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-07 15:58:07 +01:00
36 lines
980 B
JSON
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" }
|
|
]
|
|
}
|