A quick vibe-coded site to test response times of PLC.directory mirrors (over 3 attempts)
at main 652 B view raw
1{ 2 "compilerOptions": { 3 "target": "ES2020", 4 "useDefineForClassFields": true, 5 "lib": ["ES2020", "DOM", "DOM.Iterable"], 6 "module": "ESNext", 7 "skipLibCheck": true, 8 9 /* Bundler mode */ 10 "moduleResolution": "bundler", 11 "allowImportingTsExtensions": true, 12 "isolatedModules": true, 13 "moduleDetection": "force", 14 "noEmit": true, 15 "jsx": "react-jsx", 16 17 /* Linting */ 18 "strict": false, 19 "noUnusedLocals": false, 20 "noUnusedParameters": false, 21 "noImplicitAny": false, 22 "noFallthroughCasesInSwitch": false, 23 24 "baseUrl": ".", 25 "paths": { 26 "@/*": ["./src/*"] 27 } 28 }, 29 "include": ["src"] 30}