@santese/tsconfig
v1.0.0
Published
Shared tsconfigs
Downloads
2
Readme
@santese/tsconfig
Shared TypeScript configurations
Description
This package provides shared TypeScript configurations for various project types. It includes base configurations as well as specialized configurations for Bun and library projects.
Installation
You can install this package using pnpm, npm, or yarn:
pnpm
pnpm add -D @santese/tsconfig
npm
npm install -D @santese/tsconfig
yarn
yarn add -D @santese/tsconfig
Usage
After installing the package, you can use it in your tsconfig.json
file. Extend the configuration you need:
Base Configuration
{
"extends": "@santese/tsconfig"
}
Bun Configuration
{
"extends": "@santese/tsconfig/bun"
}
Library Configuration
{
"extends": "@santese/tsconfig/lib"
}
Configurations
This package includes the following configurations:
base.json
: The base TypeScript configurationbun.json
: Configuration optimized for Bun projectslib.json
: Configuration for library projects
License
This project is licensed under the MIT License.
Issues
If you encounter any issues or have suggestions, please file them in the issues section of the repository.
Author
@santese
Repository
This package is part of the santese/configs monorepo, located in the packages/tsconfig
directory.