An open API service indexing awesome lists of open source software.

https://github.com/jaid/tsconfig-jaid

Extendable TypeScript config for my Node projects.
https://github.com/jaid/tsconfig-jaid

config tsc tsconfig typescript typescript-config typescript-shareable-config

Last synced: 8 months ago
JSON representation

Extendable TypeScript config for my Node projects.

Awesome Lists containing this project

README

          

# tsconfig-jaid

License Sponsor tsconfig-jaid
Build status Commits since v8.1.0 Last commit Issues
Latest version on npm Dependents Downloads

**Extendable TypeScript config for my Node projects.**

#### Pure ESM library

:information_source: This package has only ESM exports. You should `import` it from MJS files or [read more here](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c).

## Installation

tsconfig-jaid on npm

```bash
npm install --save-dev tsconfig-jaid@^8.1.0
```

tsconfig-jaid on Yarn

```bash
yarn add --dev tsconfig-jaid@^8.1.0
```

## Usage

After installation, you can include the shared properties of `tsconfig-jaid` in your own TypeScript config file.

### Node

`YOURPROJECT/tsconfig.json`
```json
{
"extends": "tsconfig-jaid/base"
}
```

### React

`YOURPROJECT/tsconfig.json`
```json
{
"extends": "tsconfig-jaid/react"
}
```

## Development

Development hints for maintaining and improving tsconfig-jaid

Setting up:
```bash
git clone git@github.com:jaid/tsconfig-jaid.git
cd tsconfig-jaid
npm install
```
Testing in production environment:
```bash
npm run test
```

## License
[MIT License](https://raw.githubusercontent.com/jaid/tsconfig-jaid/master/license.txt)
Copyright © 2021, Jaid \ (https://github.com/jaid)