Files
importex-api/tsconfig.json
pius-coder e671c107ca
Some checks are pending
Deploy to Production / deploy (push) Waiting to run
feat: initial ImportEx API setup with Hono + Drizzle + PostgreSQL
- Hono server with CORS and logging middleware
- Drizzle ORM with PostgreSQL schema (users table)
- Environment config with Zod validation
- Dockerfile for production deployment
- Gitea Actions workflows for dev/main deployment to Coolify
- Health check route
2026-04-15 23:27:26 +01:00

25 lines
594 B
JSON

{
"compilerOptions": {
"lib": ["ESNext"],
"target": "ESNext",
"module": "Preserve",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src/**/*.ts", "drizzle.config.ts"],
"exclude": ["node_modules"]
}