Overview
Enable and fix TypeScript strict null checks in src/lib/ffmpeg.ts. The file uses non-null assertions (!) that could hide real null dereferences.
Task
- Check
tsconfig.json has 'strict': true
- Find all
! non-null assertions in ffmpeg.ts
- Replace with proper null checks or early returns
Acceptance Criteria
Estimated effort: 30 minutes
Overview
Enable and fix TypeScript strict null checks in
src/lib/ffmpeg.ts. The file uses non-null assertions (!) that could hide real null dereferences.Task
tsconfig.jsonhas'strict': true!non-null assertions inffmpeg.tsAcceptance Criteria
!assertions in ffmpeg.tsEstimated effort: 30 minutes