A simple, clean, fast browser for the AtmosphereConf(2026) VODs
0
fork

Configure Feed

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

at 08de86ad4184cd58c32b97b08459d2fc6f25d943 31 lines 764 B view raw
1{ 2 "compilerOptions": { 3 "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", 4 "target": "es2023", 5 "lib": ["ES2023", "DOM", "DOM.Iterable"], 6 "module": "esnext", 7 "types": ["vite/client"], 8 "ignoreDeprecations": "6.0", 9 "skipLibCheck": true, 10 11 /* Bundler mode */ 12 "moduleResolution": "bundler", 13 "resolveJsonModule": true, 14 "baseUrl": ".", 15 "paths": { 16 "@/*": ["./src/*"] 17 }, 18 "allowImportingTsExtensions": true, 19 "verbatimModuleSyntax": true, 20 "moduleDetection": "force", 21 "noEmit": true, 22 "jsx": "react-jsx", 23 24 /* Linting */ 25 "noUnusedLocals": true, 26 "noUnusedParameters": true, 27 "erasableSyntaxOnly": true, 28 "noFallthroughCasesInSwitch": true 29 }, 30 "include": ["src"] 31}