Skip to content

Instantly share code, notes, and snippets.

View notunderctrl's full-sized avatar

Avraj notunderctrl

View GitHub Profile
@notunderctrl
notunderctrl / tsconfig.json
Created February 5, 2025 08:44
tsconfig.json + tsup.config.ts for npm packages
{
"compilerOptions": {
"strict": true,
"noImplicitAny": true,
"esModuleInterop": true,
"strictNullChecks": true,
"target": "ES2022",
"moduleResolution": "Node10",
"module": "CommonJS",
"declaration": true,