https://github.com/devsht/tsconfig
Reusable TS config
https://github.com/devsht/tsconfig
config react reusability reusable tsconfig typescript
Last synced: 3 months ago
JSON representation
Reusable TS config
- Host: GitHub
- URL: https://github.com/devsht/tsconfig
- Owner: devsht
- License: mit
- Created: 2021-04-09T17:49:51.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-03-23T21:38:20.000Z (almost 3 years ago)
- Last Synced: 2025-05-04T14:09:43.983Z (8 months ago)
- Topics: config, react, reusability, reusable, tsconfig, typescript
- Homepage: https://www.npmjs.com/package/@devsht/tsconfig
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @devsht/tsconfig
Reusable TS config
## Installation
```bash
npm i -D @devsht/tsconfig
```
or
```
yarn add --dev @devsht/tsconfig
```
## Usage
Create a **tsconfig.json** and add this package to the extends field.
```
{
"extends": "@devsht/tsconfig",
"compilerOptions": {
"outDir": "dist"
},
"include": ["src"]
}
```