This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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`) |