Bluesky app fork with some witchin' additions 馃挮
witchsky.app
bluesky
fork
client
1{
2 "compilerOptions": {
3 "target": "esnext",
4 "module": "commonjs",
5 "types": ["react-native", "jest"],
6 "lib": [
7 "es2019",
8 "es2020.bigint",
9 "es2020.date",
10 "es2020.number",
11 "es2020.promise",
12 "es2020.string",
13 "es2020.symbol.wellknown",
14 "es2021.promise",
15 "es2021.string",
16 "es2021.weakref",
17 "es2022.array",
18 "es2022.object",
19 "es2022.string"
20 ],
21 "allowJs": true,
22 "jsx": "react-native",
23 "noEmit": true,
24 "isolatedModules": true,
25 "strict": true,
26 "moduleResolution": "node",
27 "resolveJsonModule": true,
28 "allowSyntheticDefaultImports": true,
29 "forceConsistentCasingInFileNames": false,
30 "esModuleInterop": true,
31 "skipLibCheck": true,
32 "paths": {
33 "#/*": ["./src/*"],
34 "lib/*": ["./src/lib/*"],
35 "platform/*": ["./src/platform/*"],
36 "state/*": ["./src/state/*"],
37 "view/*": ["./src/view/*"],
38 "crypto": ["./src/platform/crypto.ts"]
39 }
40 },
41 "exclude": [
42 "node_modules",
43 "babel.config.js",
44 "metro.config.js",
45 "jest.config.js"
46 ]
47}