Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
0
fork

Configure Feed

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

at main 38 lines 915 B view raw
1{ 2 "compilerOptions": { 3 // Environment setup & latest features 4 "lib": ["ESNext"], 5 "target": "ESNext", 6 "module": "Preserve", 7 "moduleDetection": "force", 8 "jsx": "react-jsx", 9 "allowJs": true, 10 11 // Bundler mode 12 "moduleResolution": "bundler", 13 "allowImportingTsExtensions": true, 14 "verbatimModuleSyntax": true, 15 "noEmit": true, 16 17 // Best practices 18 "strict": true, 19 "skipLibCheck": true, 20 "noFallthroughCasesInSwitch": true, 21 "noUncheckedIndexedAccess": true, 22 "noImplicitOverride": true, 23 24 // Some stricter flags (disabled by default) 25 "noUnusedLocals": false, 26 "noUnusedParameters": false, 27 "noPropertyAccessFromIndexSignature": false, 28 29 // Workspace paths 30 "baseUrl": ".", 31 "paths": { 32 "@wispplace/*": ["../packages/@wispplace/*/src"] 33 }, 34 "types": ["bun"] 35 }, 36 "include": ["./**/*.ts"], 37 "exclude": ["node_modules"] 38}