Skip to content

Instantly share code, notes, and snippets.

@notunderctrl
Created February 5, 2025 08:44
Show Gist options
  • Save notunderctrl/e1f51dc0207d2ba19e723be71b5eecec to your computer and use it in GitHub Desktop.
Save notunderctrl/e1f51dc0207d2ba19e723be71b5eecec to your computer and use it in GitHub Desktop.
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,
"isolatedModules": true,
"noEmit": true,
"outDir": "dist"
},
"include": ["src"],
"exclude": ["node_modules"]
}
import { defineConfig } from 'tsup';
export default defineConfig({
format: ['cjs', 'esm'],
entry: ['./src/index.ts'],
dts: true,
shims: true,
skipNodeModulesBundle: true,
clean: true,
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment