an app to share curated trails sidetrail.app
atproto nextjs react rsc
at main 37 lines 830 B view raw
1{ 2 "compilerOptions": { 3 "target": "ES2022", 4 "useDefineForClassFields": true, 5 "lib": ["ES2022", "DOM", "DOM.Iterable"], 6 "module": "ESNext", 7 "skipLibCheck": true, 8 "moduleResolution": "bundler", 9 "allowImportingTsExtensions": true, 10 "resolveJsonModule": true, 11 "isolatedModules": true, 12 "noEmit": true, 13 "jsx": "preserve", 14 "strict": true, 15 "noUnusedLocals": true, 16 "noUnusedParameters": true, 17 "noFallthroughCasesInSwitch": true, 18 "allowJs": true, 19 "incremental": true, 20 "esModuleInterop": true, 21 "plugins": [ 22 { 23 "name": "next" 24 } 25 ], 26 "paths": { 27 "@/*": ["./*"] 28 } 29 }, 30 "include": ["**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 31 "references": [ 32 { 33 "path": "./tsconfig.node.json" 34 } 35 ], 36 "exclude": ["node_modules"] 37}