an app to share curated trails sidetrail.app
1

Configure Feed

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

at bug-repro 854 B View raw
1{ 2 "compilerOptions": { 3 "target": "ES2022", 4 "useDefineForClassFields": true, 5 "lib": [ 6 "ES2022", 7 "DOM", 8 "DOM.Iterable" 9 ], 10 "module": "ESNext", 11 "skipLibCheck": true, 12 "moduleResolution": "bundler", 13 "allowImportingTsExtensions": true, 14 "resolveJsonModule": true, 15 "isolatedModules": true, 16 "noEmit": true, 17 "jsx": "react-jsx", 18 "strict": true, 19 "noUnusedLocals": true, 20 "noUnusedParameters": true, 21 "noFallthroughCasesInSwitch": true, 22 "allowJs": true, 23 "incremental": true, 24 "esModuleInterop": true, 25 "plugins": [ 26 { 27 "name": "next" 28 } 29 ], 30 "paths": { 31 "@/*": [ 32 "./*" 33 ] 34 } 35 }, 36 "include": [ 37 "**/*.ts", 38 "**/*.tsx", 39 ".next/types/**/*.ts", 40 ".next/dev/types/**/*.ts" 41 ], 42 "exclude": [ 43 "node_modules" 44 ] 45}