learn and share notes on atproto (wip) 馃
malfestio.stormlightlabs.org/
readability
solid
axum
atproto
srs
1{
2 "compilerOptions": {
3 "baseUrl": ".",
4 "paths": {
5 "$lib/*": ["src/lib/*"],
6 "$pages/*": ["src/pages/*"],
7 "$components/*": ["src/components/*"],
8 "$ui/*": ["src/components/ui/*"]
9 },
10 "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
11 "target": "ES2022",
12 "useDefineForClassFields": true,
13 "module": "ESNext",
14 "lib": ["ES2022", "DOM", "DOM.Iterable"],
15 "types": ["vite/client", "@testing-library/jest-dom"],
16 "skipLibCheck": true,
17 /* Bundler mode */
18 "moduleResolution": "bundler",
19 "allowImportingTsExtensions": true,
20 "verbatimModuleSyntax": true,
21 "moduleDetection": "force",
22 "noEmit": true,
23 "jsx": "preserve",
24 "jsxImportSource": "solid-js",
25 /* Linting */
26 "strict": true,
27 "noUnusedLocals": true,
28 "noUnusedParameters": true,
29 "erasableSyntaxOnly": true,
30 "noFallthroughCasesInSwitch": true,
31 "noUncheckedSideEffectImports": true
32 },
33 "include": ["src"]
34}