{ "_comment": "Plan 01-11 — type-check config for the Puppeteer UAT harness. Mirrors the root tsconfig.json's compiler options but `include`s the harness tree explicitly so `npx tsc --noEmit -p tests/uat` validates the harness in isolation. Used by Task 3 to verify the scaffolding type-checks before tsx runs it. The root tsconfig.json's `include: ['src']` does NOT pick up tests/, so this file is necessary for the type-check verification step.", "compilerOptions": { "target": "ES2022", "module": "ESNext", "lib": ["ES2022", "DOM", "DOM.Iterable"], "skipLibCheck": true, "moduleResolution": "bundler", "allowImportingTsExtensions": true, "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, "types": ["chrome", "node"] }, "include": ["**/*.ts", "**/*.d.ts"] }