uniswap-interface-uncensored/tsconfig.lib.json
Zach Pomerantz 850a20f6ad
feat: include native currency in widget select (#3124)
* 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
2022-01-18 12:11:22 -08:00

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/**/*"]
}