Skip to content

Instantly share code, notes, and snippets.

View goodbyte's full-sized avatar

goodbyte goodbyte

  • goodbyte
  • Uruguay
View GitHub Profile
@goodbyte
goodbyte / package.json
Last active December 6, 2025 08:27
[ Pure Node.js + Typescript + ESM + Path aliases ( subpaths ) + Watch ] package.json tsconfig.json 2025
{
"name": "example",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "node dist/index.js",
"dev": "node --conditions=development --watch src/index.ts",
"build": "npm run typecheck && npm run clean && tsc",
"clean": "rimraf dist",