@keinsell/tsconfig
v1.0.0
Published
TypeScript configuration
Downloads
4
Maintainers
Readme
tsconfig
Install
npm install --save-dev @keinsell/tsconfig
This config requires TypeScript 5 or later.
Usage
tsconfig.json
{
"extends": "@keinsell/tsconfig",
"compilerOptions": {
"outDir": "dist"
}
}
When you are targeting a higher version of Node.js, check the relevant ECMAScript version and add it as target
:
{
"extends": "@keinsell/tsconfig",
"compilerOptions": {
"outDir": "dist",
"target": "ES2023"
}
}