Files
team-planner/frontend/tsconfig.node.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

19 lines
514 B
JSON

{
"extends": "@vigdorov/typescript-config/base",
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2023",
"lib": ["ES2023"],
"types": ["node"],
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noUncheckedSideEffectImports": true
},
"include": ["vite.config.ts"]
}