Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samuelmeuli/tsconfig
⚙️ My TypeScript configuration
https://github.com/samuelmeuli/tsconfig
tsconfig typescript typescript-configuration
Last synced: 19 days ago
JSON representation
⚙️ My TypeScript configuration
- Host: GitHub
- URL: https://github.com/samuelmeuli/tsconfig
- Owner: samuelmeuli
- License: mit
- Created: 2019-06-20T14:07:17.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-17T09:24:30.000Z (over 4 years ago)
- Last Synced: 2024-11-30T08:39:02.917Z (about 1 month ago)
- Topics: tsconfig, typescript, typescript-configuration
- Homepage:
- Size: 213 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# tsconfig
This is the shared TypeScript configuration for my projects.
## Install
Install the package using NPM:
```sh
yarn add --dev @samuelmeuli/tsconfig
```## Usage
Create the `tsconfig.json` file in your project root:
```json
{
"extends": "@samuelmeuli/tsconfig"
}
```The default configuration can be overridden or extended:
```json
{
"extends": "@samuelmeuli/tsconfig",
"compilerOptions": {
"module": "ES6"
}
}
```