@mvllow/tsconfig
v0.3.0
Published
Shared TypeScript config for my projects
Downloads
6
Readme
tsconfig
Shared TypeScript config for my projects
Install
npm install --save-dev @mvllow/tsconfig
Usage
tsconfig.json
{
"extends": "@mvllow/tsconfig",
"compilerOptions": {
"outDir": "dist"
}
}
When targeting a higher version of Node.js, check the relevant ECMAScript version and add it as target:
{
"extends": "@mvllow/tsconfig",
"compilerOptions": {
"outDir": "dist",
"target": "ES2024"
}
}
Inspired by @sindresorhus