850a20f6ad
* fix: token image for chains / natives * feat: include native currency in select - Updates widgets swap state to use Currency (and deals with downstream updates) - Refactors logoURI code to a new lib/hooks/useCurrencyLogoURIs - Adds native currency to useQueryTokenList NB: This does not build because tests must be updated to use Currency (they currently use mock tokens) * test: update fixtures to use real currency * fix: data uri color extraction * fix: token img state * fix: use new array
22 lines
547 B
JSON
22 lines
547 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"declaration": true,
|
|
"declarationDir": "dist/dts",
|
|
"baseUrl": "src/lib",
|
|
"paths": {
|
|
"lib/*": ["./*"],
|
|
"abis/*": ["../abis/*"],
|
|
"assets/*": ["../assets/*"],
|
|
"constants/*": ["../constants/*"],
|
|
"hooks/*": ["../hooks/*"],
|
|
"state/*": ["../state/*"],
|
|
"types/*": ["../types/*"],
|
|
"utils/*": ["../utils/*"],
|
|
},
|
|
},
|
|
"exclude": ["node_modules", "src/lib/**/*.test.*"],
|
|
"include": ["src/lib/**/*"]
|
|
}
|