9bd3697a17
Generic URL parity harness (table-driven + property-based roundtrip) and SEO parity harness (shape/completeness validation) registered for Online Board. 170 tests covering all 6 route types with 200-iteration fast-check fuzz runs ensuring no serialization asymmetry.
31 lines
955 B
JSON
31 lines
955 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2023",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["ES2023", "DOM", "DOM.Iterable"],
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@phase0/*": ["scripts/phase-0/*"]
|
|
},
|
|
"types": ["node", "vitest/globals"]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "tests/**/*.ts", "vitest.config.ts", "modern.config.ts", "module-federation.config.ts"],
|
|
"exclude": ["node_modules", "dist", "ClientApp", "wwwroot"]
|
|
}
|