an appview-less Bluesky client using Constellation and PDS Queries
reddwarf.app
frontend
spa
bluesky
reddwarf
microcosm
1{
2 "include": ["**/*.ts", "**/*.tsx"],
3 "compilerOptions": {
4 "target": "ES2022",
5 "jsx": "react-jsx",
6 "module": "ESNext",
7 "lib": ["ES2022", "DOM", "DOM.Iterable"],
8 "types": ["vite/client", "unplugin-icons/types/react"],
9
10 /* Bundler mode */
11 "moduleResolution": "bundler",
12 "allowImportingTsExtensions": true,
13 "verbatimModuleSyntax": true,
14 "noEmit": true,
15
16 /* Linting */
17 "skipLibCheck": true,
18 "strict": true,
19 "noUnusedLocals": true,
20 "noUnusedParameters": true,
21 "noFallthroughCasesInSwitch": true,
22 "noUncheckedSideEffectImports": true,
23 "baseUrl": ".",
24 "paths": {
25 "~/*": ["./src/*"],
26 "@/*": ["./src/*"]
27 }
28 }
29}