Shared TypeScript config for my projects
$ npm install --save-dev @sindresorhus/tsconfig
tsconfig.json
{
"extends": "@sindresorhus/tsconfig/tsconfig.json",
"compilerOptions": {
"outDir": "dist"
}
}
When you are targeting a higher version of Node.js, check the relevant ECMAScript version and add it as target
:
{
"extends": "@sindresorhus/tsconfig/tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"target": "ES2021"
}
}