[READ-ONLY] Mirror of https://github.com/shuuji3/tanstack-start-playground. 馃И experimental playground for TanStack Start (https://tanstack.com/start/latest)
0

Configure Feed

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

tanstack-start-playground / tsconfig.json
510 B 22 lines
1{ 2 "include": ["**/*.ts", "**/*.tsx"], 3 "compilerOptions": { 4 "strict": true, 5 "esModuleInterop": true, 6 "jsx": "react-jsx", 7 "module": "ESNext", 8 "moduleResolution": "Bundler", 9 "lib": ["DOM", "DOM.Iterable", "ES2022"], 10 "isolatedModules": true, 11 "resolveJsonModule": true, 12 "skipLibCheck": true, 13 "target": "ES2022", 14 "allowJs": true, 15 "forceConsistentCasingInFileNames": true, 16 "baseUrl": ".", 17 "paths": { 18 "~/*": ["./src/*"] 19 }, 20 "noEmit": true 21 } 22}