A demon compendium, deterministically derived from DIDs + PDS records.
0

Configure Feed

Select the types of activity you want to include in your feed.

haunt / tsconfig.json
679 B 29 lines
1{ 2 "compilerOptions": { 3 /* Base Options: */ 4 "esModuleInterop": true, 5 "skipLibCheck": true, 6 "target": "es2022", 7 "resolveJsonModule": true, 8 "moduleDetection": "force", 9 "isolatedModules": true, 10 "verbatimModuleSyntax": true, 11 12 /* Strictness */ 13 "strict": true, 14 "noUncheckedIndexedAccess": true, 15 "lib": ["dom", "dom.iterable", "ES2022"], 16 "noEmit": true, 17 "module": "ESNext", 18 "moduleResolution": "Bundler", 19 "jsx": "react-jsx", 20 "types": ["vite/client"], 21 22 /* Path Aliases */ 23 "paths": { 24 "~/*": ["./src/*"] 25 } 26 }, 27 "include": ["src", "scripts", "vite.config.ts"], 28 "exclude": ["node_modules", "dist"] 29}