Files
test-calculator/tsconfig.app.json
Alina 37c201975c
Some checks failed
continuous-integration/drone/push Build is failing
feat: implement calculator app with pseudo-auth and CI/CD
- Calculator with full keyboard support and click interaction
- Pseudo-auth via localStorage (any login accepted)
- Dark theme (AntD ConfigProvider + custom styles)
- Responsive layout from 320px
- CI/CD: service.yaml + .drone.yml for deployment to test-calculator.vigdorov.ru

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 21:03:52 +03:00

29 lines
732 B
JSON

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "ES2022",
"useDefineForClassFields": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"types": ["vite/client"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["src"]
}