uniswap-interface-uncensored/tsconfig.lib.json
Zach Pomerantz e5a1cb4276
chore: replace microbundle with rollup (#3115)
* refactor: mv gas estimate chains out of component

* chore: replace microbundle with rollup

* chore: use ts rollup config

* chore: rename lib to widgets

* chore: add rollup doc comment

* feat: rollup typings

* fix: retain tsconfig decl dir
2022-01-13 17:11:27 -08:00

21 lines
514 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/*"],
},
},
"exclude": ["node_modules", "src/lib/**/*.test.*"],
"include": ["src/lib/**/*"]
}