Files
bsky-social-app/tsconfig.json
vineyardbovines 0d81c5f459 yeet webpack
2026-05-25 16:23:37 +03:00

24 lines
741 B
JSON

{
"extends": "@react-native/typescript-config/tsconfig.json",
"compilerOptions": {
"jsx": "react-jsx",
"module": "esnext",
"lib": ["dom", "esnext"],
"types": ["node", "jest"],
"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/react/macro"],
"moveDownPatterns": ["react-native-reanimated/lib"],
}
]
},
"exclude": ["bskyweb", "bskyembed", "web-build", "dist"]
}