Files
xverse-web-extension/tsconfig.json
Tim Man c5b32b564a [ENG-3496] fix: utxo 500 issue add a fallback option to our api httpsbtc (#738)
* chore: fix for core local dev

* feat: use btc esplora api with a fallback url

* feat: add fallbackBtcApiUrl to store and refactor network state

* fix: types and comments

* refactor: clean up local react state in changeNetwork

* fix: clean up UI in change network node inputs

* chore: bump core version

* chore: bump core version

* fix: type error from core version

* fix: make fallback btc url not a required field, and update styles

* fix: remove unused remote btcApiUrl config functionality

* chore: not really a factory
2024-01-11 16:55:28 +08:00

35 lines
956 B
JSON

{
"compilerOptions": {
"target": "esnext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": false,
"jsx": "react-jsx",
"outDir": "build/js",
"baseUrl": "./src",
"paths": {
"@components/*": ["app/components/*"],
"@hooks/*": ["app/hooks/*"],
"@assets/*": ["assets/*"],
"@screens/*": ["app/screens/*"],
"@common/*": ["common/*"],
"@stores/*": ["app/stores/*"],
"@utils/*": ["app/utils/*"],
"@core/*": ["app/core/*"],
"@ui-library/*": ["app/ui-library/*"]
}
},
"include": ["src", "styled.d.ts"]
}