https://github.com/samuelmeuli/tsconfig
⚙️ My TypeScript configuration
https://github.com/samuelmeuli/tsconfig
tsconfig typescript typescript-configuration
Last synced: 3 months 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 (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-17T09:24:30.000Z (almost 5 years ago)
- Last Synced: 2025-03-18T05:55:10.849Z (3 months 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"
}
}
```