open-design/e2e/tsconfig.json
Marc Chan f294ab4915
chore(ci): add visual regression PR workflow (#2372)
* Add visual regression PR workflow

* Allow manual visual PR comments

* Post visual comments for same-repo PRs

* fix(ci): surface R2 lookup failures in visual report

Generated-By: looper 0.8.1 (runner=fixer, agent=opencode)

* Align visual workflow names
2026-05-20 15:05:59 +08:00

36 lines
893 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"@/*": ["lib/*.ts"]
},
"strict": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"allowImportingTsExtensions": true,
"noEmit": true,
"isolatedModules": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"types": ["node", "vitest"]
},
"include": [
"playwright.config.ts",
"playwright.visual.config.ts",
"vitest.config.ts",
"lib/**/*.ts",
"resources/**/*.ts",
"scripts/**/*.ts",
"specs/**/*.ts",
"tests/**/*.ts",
"ui/**/*.ts"
],
"exclude": ["node_modules", "reports", ".od-data"]
}