mirror of
https://github.com/minibits-cash/minibits_wallet.git
synced 2026-07-22 07:48:28 +00:00
17 lines
446 B
JSON
17 lines
446 B
JSON
{
|
|
"extends": "@react-native/typescript-config",
|
|
"include": ["**/*.ts", "**/*.tsx"],
|
|
"exclude": ["**/node_modules", "**/Pods"],
|
|
"compilerOptions": {
|
|
"jsx": "react",
|
|
"typeRoots": ["./src/utils/envtypes", "./node_modules/@types"],
|
|
"lib": ["ES2022"],
|
|
"paths": {
|
|
"nostr-tools/*": ["./node_modules/nostr-tools/lib/types/*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"types": ["jest"],
|
|
}
|
|
}
|