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.
- Host: GitHub
- URL: https://github.com/jaid/tsconfig-jaid
- Owner: Jaid
- License: mit
- Created: 2020-08-24T11:47:53.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-06-04T11:02:45.000Z (about 2 years ago)
- Last Synced: 2025-04-20T04:34:57.189Z (about 1 year ago)
- Topics: config, tsc, tsconfig, typescript, typescript-config, typescript-shareable-config
- Language: TypeScript
- Homepage: https://github.com/Jaid/tsconfig-jaid
- Size: 8 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Funding: .github/funding.yml
- License: license.txt
Awesome Lists containing this project
README
# tsconfig-jaid
**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
```bash
npm install --save-dev tsconfig-jaid@^8.1.0
```
```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)