Skip to content

Instantly share code, notes, and snippets.

View BobDempsey's full-sized avatar

Bob Dempsey BobDempsey

View GitHub Profile
@BobDempsey
BobDempsey / gist:df37a6a630c633d107545d8b441c6b86
Created December 12, 2025 22:44
Node.js TypeScript Project Checklist
# Node.js TypeScript Project Checklist
## TypeScript Configuration
- Strict mode enabled (`strict: true`)
- ES module setup (`module: NodeNext`, `moduleResolution: NodeNext`)
- Path aliases with tsconfig-paths or native Node subpath imports
- Separate tsconfig files for src and tests if needed
- Output directory configuration (`outDir: dist`)