0.3.0 • Published 10 months ago
@mvllow/tsconfig v0.3.0
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