Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/willclarktech/tsconfig-willclarktech
Default TS config for personal projects
https://github.com/willclarktech/tsconfig-willclarktech
Last synced: 17 days ago
JSON representation
Default TS config for personal projects
- Host: GitHub
- URL: https://github.com/willclarktech/tsconfig-willclarktech
- Owner: willclarktech
- Created: 2023-01-06T18:57:23.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-27T12:25:20.000Z (3 months ago)
- Last Synced: 2024-10-27T13:59:04.286Z (3 months ago)
- Language: Shell
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tsconfig-willclarktech
Default TypeScript configuration for personal projects.
## Installation
Install the package:
```sh
npm install --save-dev https://github.com/willclarktech/tsconfig-willclarktech
```## Usage
In TS projects extend from the default config in your TypeScript configuration file:
```json
{
"extends": "tsconfig-willclarktech/tsconfig-base.json"
}
```In React projects extend from the `react` config:
```json
{
"extends": "tsconfig-willclarktech/tsconfig-react.json"
}
```In library projects extend from the `library` config:
```json
{
"extends": "tsconfig-willclarktech/tsconfig-library.json"
}
```