https://github.com/sindresorhus/tsconfig
Shared TypeScript config for my projects
https://github.com/sindresorhus/tsconfig
config npm-package tsconfig typescript
Last synced: about 1 year ago
JSON representation
Shared TypeScript config for my projects
- Host: GitHub
- URL: https://github.com/sindresorhus/tsconfig
- Owner: sindresorhus
- License: mit
- Created: 2018-11-30T08:09:22.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2024-11-25T07:58:51.000Z (over 1 year ago)
- Last Synced: 2025-05-03T07:27:22.604Z (about 1 year ago)
- Topics: config, npm-package, tsconfig, typescript
- Homepage:
- Size: 31.3 KB
- Stars: 362
- Watchers: 17
- Forks: 29
- Open Issues: 5
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# tsconfig
> Shared [TypeScript config](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html) for my projects
This config makes TypeScript not do any polyfilling, so only use syntax and features available in the JavaScript environments you target.
## Install
```sh
npm install --save-dev @sindresorhus/tsconfig
```
*This config requires TypeScript 5.5 or later.*
## Usage
`tsconfig.json`
```json
{
"extends": "@sindresorhus/tsconfig"
}
```