mirror of
https://github.com/zhigang1992/xverse-web-extension.git
synced 2026-01-12 22:53:42 +08:00
* 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
35 lines
956 B
JSON
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"]
|
|
}
|