Files
team-planner/frontend/tsconfig.app.json
vigdorov 1556ff9a29
All checks were successful
continuous-integration/drone/push Build is passing
chore: migrate to @vigdorov/* shared configs (eslint, prettier, typescript, vite)
Replace project-local ESLint, Prettier, TypeScript, and Vite configs
with shared packages from dev-configs monorepo.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-20 00:57:41 +03:00

15 lines
408 B
JSON

{
"extends": "@vigdorov/typescript-config/react",
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"useDefineForClassFields": true,
"types": ["vite/client"],
"verbatimModuleSyntax": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noUncheckedSideEffectImports": true
},
"include": ["src"]
}