Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sanv92/tsconfig
Shared TypeScript config for projects
https://github.com/sanv92/tsconfig
Last synced: about 2 months ago
JSON representation
Shared TypeScript config for projects
- Host: GitHub
- URL: https://github.com/sanv92/tsconfig
- Owner: sanv92
- Created: 2020-05-17T10:52:18.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-06T03:05:06.000Z (about 2 years ago)
- Last Synced: 2024-09-06T19:15:04.489Z (4 months ago)
- Language: JavaScript
- Size: 355 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tsconfig
> Shared [TypeScript config](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html) for my projects
## Install
```
npm install --save-dev @sanv/tsconfig
yarn add --dev @sanv/tsconfig
```## Usage
`tsconfig.json`
```json
{
"extends": "@sanv/tsconfig",
"compilerOptions": {
"outDir": "dist",
"target": "es2018",
"lib": [
"es2018"
]
}
}
```