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: 2 months ago
JSON representation
A collection of base TSConfigs for various project types.
- Host: GitHub
- URL: https://github.com/autosseyai/tsconfig
- Owner: AutosseyAI
- Created: 2023-09-19T23:02:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-03T11:46:52.000Z (over 2 years ago)
- Last Synced: 2025-09-30T16:23:28.834Z (9 months ago)
- Topics: bun, nextjs, node, react, tsconfig, tsconfig-json, typescript
- Homepage: https://www.npmjs.com/package/@autossey/tsconfig
- Size: 9.77 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A collection of base TSConfigs for various types of projects.
_If I should maintain this repo, please ⭐️_
_DM me on [Twitter](https://twitter.com/bconnorwhite) if you have questions or suggestions._
---
## Installation
```sh
npm install --save-dev @autossey/tsconfig
```
```sh
yarn add --dev @autossey/tsconfig
```
```sh
pnpm add --save-dev @autossey/tsconfig
```
```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"
}
```
Dependencies
- [@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
[MIT](https://opensource.org/licenses/MIT) - _The MIT License_