Bluesky app fork with some witchin' additions 馃挮
witchsky.app
bluesky
fork
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 "paths": {
32 "#/*": ["./src/*"],
33 "lib/*": ["./src/lib/*"],
34 "platform/*": ["./src/platform/*"],
35 "state/*": ["./src/state/*"],
36 "view/*": ["./src/view/*"],
37 "crypto": ["./src/platform/crypto.ts"]
38 }
39 },
40 "exclude": [
41 "node_modules",
42 "babel.config.js",
43 "metro.config.js",
44 "jest.config.js"
45 ]
46}