A set of base tsconfig.json files for TypeScript projects.
tsconfig-base.json
: A good TSConfig starting point.tsconfig-esm.json
: A TSConfig for use with ESM projects.
npm install --save-dev https://github.com/ciaran1344/tsconfig-presets
In your tsconfig.json
:
{
"extends": "@ciaran1344/tsconfig-presets/tsconfig-esm.json",
// Rest of your tsconfig options here
"include": ["src"]
}