@gabrielmaialva33/tsconfig
v1.0.0
Published
Shared TypeScript config for my projects
Maintainers
Readme
:bookmark: About
tsconfig is a shared TypeScript config designed to standardize and simplify the configuration of TypeScript projects. With a set of best practices pre-configured, it helps you start your projects quickly and consistently.
:computer: Technologies
:package: Installation
:heavy_check_mark: Install
Install the package as a development dependency:
npm install --save-dev @gabrielmaialva33/tsconfigThis config requires TypeScript 5 or later.
:rocket: Usage
Configure your project by extending this configuration in your tsconfig.json file.
Basic Setup
{
"extends": "@gabrielmaialva33/tsconfig",
"compilerOptions": {
"outDir": "dist"
}
}Targeting a Higher Node.js Version
When targeting a higher version of Node.js, adjust the ECMAScript target accordingly:
{
"extends": "@gabrielmaialva33/tsconfig",
"compilerOptions": {
"outDir": "dist",
"target": "ES2023"
}
}:memo: License
This project is licensed under the MIT license. See LICENSE for more details.
:rocket: Contributors
| |
|-----------------------------------------------------------------------------------------------------------|
| Maia |
