mirror of
https://github.com/kharonsec/br-acc
synced 2026-04-26 01:25:06 +02:00
- git init, AGPL-3.0 license, .gitignore, .env.example, Makefile - CLAUDE.md with neutrality rules, build commands, code style - Custom agents: security-reviewer, code-reviewer, test-writer - API: FastAPI skeleton with health check, meta endpoints, Neo4j driver - ETL: Pipeline base class, CLI runner skeleton, splink + basedosdados deps - Frontend: Vite + React 19 + React Router 7 + i18n (PT-BR/EN) + Zustand - Infra: docker-compose.yml (Neo4j + API + Frontend), schema init.cypher - All feedback loops pass: ruff, mypy, pytest, eslint, tsc, vitest Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
25 lines
575 B
JSON
25 lines
575 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2023", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": ["src"]
|
|
}
|