Problem
A malformed config file throws a bare SyntaxError with no path, unlike src/static/manifest.ts which wraps errors with the path.
Where
src/config.ts (bare JSON.parse(raw)).
Acceptance
Add a failing test first with a malformed config file, asserting the message contains the file path. Then fix.
Problem
A malformed config file throws a bare
SyntaxErrorwith no path, unlikesrc/static/manifest.tswhich wraps errors with the path.Where
src/config.ts(bareJSON.parse(raw)).Acceptance
Add a failing test first with a malformed config file, asserting the message contains the file path. Then fix.