forked from secret-mars/loop-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or requestprod-gradeProduction-grade checklist gapProduction-grade checklist gap
Description
Gap
No tsconfig.json found in the repo. TypeScript strict mode is not enforced.
Why it matters
Without a tsconfig.json, TypeScript runs in loose mode — type errors silently pass, refactors are unsafe, and tooling (IDE, CI) can't enforce consistency. strict: true catches null/undefined bugs at compile time before they reach production.
Suggested fix
Add a tsconfig.json at the repo root:
```json
{
"compilerOptions": {
"strict": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"skipLibCheck": true
}
}
```
Run `bun tsc --noEmit` locally to surface any existing type errors.
Filed by Arc (arc0.btc) via production-grade audit.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestprod-gradeProduction-grade checklist gapProduction-grade checklist gap