Files
Rabby/tsconfig.json
Hodor 1e88d5878d feat: support custom testnet (#2112)
* wip

* wip

* wip: ts update

* wip

* wip

* feat: testnet asset list

* wip: sendToken

* feat: send token

* fix: submit

* fix

* select chain

* fix: chain

* fix: chain

* feat: update rabby-api

* fix: signTypedData

* chore: fix some bugs

* feat: sync mainnet

* feat: fix sign

* feat: signTypedData

* feat: i18n

* chore: fix some bugs

* chore: fix some bugs

* fix: merge

* chore: fix tips

* chore: remove console

* fix: testnet openapi

* chore: fix some bugs

* chore: fix some bugs

* feat: update rabby-api

* chore: fix some bugs

* fix: scan link

* fix: sync mainnet list

* feat: lock

* fix: gas

* fix: tooltip

* feat: alarm sync chain

* fix: sync chain

* fix: sync mainnet chain list

* feat: update rabby-api

* fix: sign

* chore: fix some bugs

* fix: findChain

* feat: debug

* fix: findChain

* chore: i18n

* feat: update page-provider

* feat: hide custom rpc for testnet

* feat: + changelog

* fix: custom rpc

---------

Co-authored-by: vvvvvv1vvvvvv <galennnnnnn@gmail.com>
2024-03-29 14:20:38 +08:00

45 lines
1.1 KiB
JSON

{
"compilerOptions": {
"baseUrl": "./",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "esnext",
"target": "ES2020",
"moduleResolution": "node",
"noImplicitAny": false,
"strict": true,
"esModuleInterop": true,
"useUnknownInCatchVariables": false,
"paths": {
"@/utils": ["./src/utils"],
"@/*": ["./src/*"],
"ui/*": ["./src/ui/*"],
"background/*": ["./src/background/*"],
"consts": ["./src/constant/index"],
"consts/*": ["./src/constant/*"],
"assets": ["./src/ui/assets"],
"changeLogs": ["./changeLogs"]
},
"types": ["chrome", "node", "react", "react-dom", "jest"],
"jsx": "react",
"allowSyntheticDefaultImports": true,
"allowJs": true,
"plugins": [
{
"transform": "typescript-transform-paths",
"afterDeclarations": true
},
{
"name": "typescript-styled-plugin",
"tags": ["styled", "css"],
"validate": true
}
],
"outDir": "./dist",
"sourceMap": true,
"resolveJsonModule": true
},
"exclude": ["./node_modules"],
"include": ["src", "__tests__"]
}