This repository has no description
0

Configure Feed

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

time-bandit / tsconfig.json
565 B 23 lines
1{ 2 "compilerOptions": { 3 "target": "ES2022", 4 "module": "ESNext", 5 "moduleResolution": "bundler", 6 "lib": ["ES2022", "DOM", "DOM.Iterable"], 7 "types": ["vite/client", "node"], 8 "jsx": "react-jsx", 9 "baseUrl": ".", 10 "paths": { 11 "@/*": ["./src/*"] 12 }, 13 "strict": true, 14 "noUnusedLocals": true, 15 "noUnusedParameters": true, 16 "noFallthroughCasesInSwitch": true, 17 "isolatedModules": true, 18 "moduleDetection": "force", 19 "noEmit": true, 20 "skipLibCheck": true 21 }, 22 "include": ["src", "shared", "vite.config.ts"] 23}