CLI tool to sync your Markdown to Leaflet
leafletpub
atproto
cli
markdown
1{
2 "$schema": "https://www.schemastore.org/tsconfig.json",
3 "compilerOptions": {
4 // Environment setup & latest features
5 "lib": [
6 "ESNext"
7 ],
8 "target": "ESNext",
9 "module": "Preserve",
10 "moduleDetection": "force",
11 "jsx": "react-jsx",
12 "allowJs": true,
13 // Bundler mode
14 "moduleResolution": "bundler",
15 "allowImportingTsExtensions": true,
16 "verbatimModuleSyntax": true,
17 "noEmit": true,
18 // Best practices
19 "strict": true,
20 "skipLibCheck": true,
21 "noFallthroughCasesInSwitch": true,
22 "noUncheckedIndexedAccess": true,
23 "noImplicitOverride": true,
24 // Some stricter flags (disabled by default)
25 "noUnusedLocals": false,
26 "noUnusedParameters": false,
27 "noPropertyAccessFromIndexSignature": false,
28 "types": [
29 "@atcute/leaflet",
30 "@atcute/atproto",
31 "@atcute/microcosm",
32 "@atcute/standard-site",
33 "@types/bun"
34 ],
35 "noImplicitAny": false
36 }
37}