this repo has no description atmosphereconf-vods.wisp.place/
4
fork

Configure Feed

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

at main 30 lines 708 B view raw
1{ 2 "include": ["**/*.ts", "**/*.tsx", "eslint.config.js", "vite.config.ts"], 3 4 "compilerOptions": { 5 "target": "ES2022", 6 "jsx": "react-jsx", 7 "module": "ESNext", 8 "baseUrl": ".", 9 "paths": { 10 "#/*": ["./src/*"], 11 "@/*": ["./src/*"] 12 }, 13 "lib": ["ES2022", "DOM", "DOM.Iterable"], 14 "types": ["vite/client"], 15 16 /* Bundler mode */ 17 "moduleResolution": "bundler", 18 "allowImportingTsExtensions": true, 19 "verbatimModuleSyntax": true, 20 "noEmit": true, 21 22 /* Linting */ 23 "skipLibCheck": true, 24 "strict": true, 25 "noUnusedLocals": true, 26 "noUnusedParameters": true, 27 "noFallthroughCasesInSwitch": true, 28 "noUncheckedSideEffectImports": true 29 } 30}