Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/autosseyai/tsconfig
- Owner: AutosseyAI
- Created: 2023-09-19T23:02:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-03T11:46:52.000Z (over 1 year ago)
- Last Synced: 2024-12-14T20:11:42.337Z (about 2 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_