metallkart-erp/frontend/tsconfig.node.json
Louis-Andre 7f72ea447a feat: frontend scaffolding - Vite+React+AntDesign+auth+layout
Vite 8, React 19, TypeScript strict, Ant Design 6, React Router 7.
Login page, dashboard with stats cards, sidebar menu in Russian.
AuthContext with JWT access+refresh tokens via Axios interceptors.
Nginx reverse proxy port 5180 with basic auth.
Systemd service for Vite dev server.
Puppeteer screenshot service.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 14:23:18 +00:00

27 lines
653 B
JSON

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2023",
"lib": ["ES2023"],
"module": "ESNext",
"types": ["node"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["vite.config.ts"]
}