* feat(frontend): convert to ts * refactor(frontend): axios-override - simplify shouldMock type * fix: refine stage labels * refactor(frontend): refine `useUserId` signature * fix(frontend): descriptionLines and langsCount can be undefined * refactor(frontend): refine casting on redirectCode * refactor(frontend): refine stageIndex title and types * refactor(frontend): apply pr review comments changes * refactor(frontend): group properties using reference groups * refactor(frontend): remove outdated comment * fix(frontend): mock-http - simplify code
33 lines
776 B
JSON
33 lines
776 B
JSON
{
|
|
// Visit https://aka.ms/tsconfig to read more about this file
|
|
"compilerOptions": {
|
|
// Type Checking
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitOverride": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
|
|
// Modules
|
|
"module": "nodenext",
|
|
"target": "esnext",
|
|
"types": [],
|
|
"noUncheckedSideEffectImports": true,
|
|
"moduleDetection": "force",
|
|
|
|
// Interop Constraints
|
|
"verbatimModuleSyntax": true,
|
|
"isolatedModules": true,
|
|
|
|
// Language and Environment
|
|
"jsx": "react-jsx",
|
|
|
|
// Completeness
|
|
"skipLibCheck": true
|
|
}
|
|
}
|