Files
bsky-social-app/tsconfig.json
T
2025-10-15 09:37:07 -07:00

24 lines
713 B
JSON

{
"extends": "@react-native/typescript-config/tsconfig.json",
"compilerOptions": {
"jsx": "react-jsx",
"module": "esnext",
"types": ["node", "jest"],
"baseUrl": ".",
"paths": {
"#/*": ["./src/*"],
"crypto": ["./src/platform/crypto.ts"],
"multiformats/cid": ["node_modules/multiformats/types/src/cid.d.ts"],
"multiformats/hashes/hasher": ["node_modules/multiformats/types/src/hashes/hasher.d.ts"]
},
"plugins": [
{
"name": "ts-plugin-sort-import-suggestions",
"moveUpPatterns": ["#/", "@lingui/macro"],
"moveDownPatterns": ["react-native-reanimated/lib"],
}
]
},
"exclude": ["bskyweb", "bskyembed", "web-build"]
}