front-hub/tsconfig.json
Nastya 1169a6644c
All checks were successful
Deploy / CreateImage (push) Successful in 5m48s
Deploy / DeployService (push) Successful in 22s
обработка перелогина при оплате без мерцания
2025-07-17 12:10:54 +03:00

30 lines
820 B
JSON

{
"extends": "./tsconfig.extend.json",
"compilerOptions": {
"target": "ESNext",
"lib": ["es5", "dom", "dom.iterable", "esnext"],
"types": ["node"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"exactOptionalPropertyTypes": true,
"noPropertyAccessFromIndexSignature": true
},
"include": ["src", "**/*.ts"]
}