Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/autosseyai/tsconfig

A collection of base TSConfigs for various project types.
https://github.com/autosseyai/tsconfig

bun nextjs node react tsconfig tsconfig-json typescript

Last synced: 26 days ago
JSON representation

A collection of base TSConfigs for various project types.

Awesome Lists containing this project

README

        


@autossey/tsconfig



npm


typescript


A collection of base TSConfigs for various types of projects.


_If I should maintain this repo, please ⭐️_

GitHub stars

_DM me on [Twitter](https://twitter.com/bconnorwhite) if you have questions or suggestions._

Twitter Follow

---

## Installation



NPM

```sh
npm install --save-dev @autossey/tsconfig
```



Yarn

```sh
yarn add --dev @autossey/tsconfig
```


PNPM

```sh
pnpm add --save-dev @autossey/tsconfig
```


Bun

```sh
bun add --dev @autossey/tsconfig
```

## Usage

In your `tsconfig.json` file:

### Bun
```json
{
"extends": "@autossey/tsconfig/bun"
}
```

### DOM
```json
{
"extends": "@autossey/tsconfig/dom"
}
```

### Next.js
```json
{
"extends": "@autossey/tsconfig/next"
}
```

### Node
```json
{
"extends": "@autossey/tsconfig/node"
}
```

### Node 18
```json
{
"extends": "@autossey/tsconfig/node-18"
}
```

### Node 18 - CommonJS
```json
{
"extends": "@autossey/tsconfig/node-18-cjs"
}
```


Dependenciesdependencies

- [@types/node](https://www.npmjs.com/package/@types/node): TypeScript definitions for Node.js
- [bun-types](https://www.npmjs.com/package/bun-types): Type definitions for Bun, an incredibly fast JavaScript runtime


Dev Dependencies

- [jsonlint](https://www.npmjs.com/package/jsonlint): Validate JSON


License license

[MIT](https://opensource.org/licenses/MIT) - _The MIT License_