TypeScript / JavaScript Conventions
- •Prefer the project’s package manager lockfile (
pnpm/yarn/npm). - •Run
npm|pnpm|yarnscripts for build/test/lint; keep CI green. - •If TypeScript is present, ensure
tsc(or equivalent) passes. - •Avoid introducing new deps unless necessary; document why.