forked from cncsc/typescript-config
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# TypeScript Config | ||
|
||
This repository contains the baseline TypeScript compiler configuration for all Quantum projects | ||
that use TypeScript 3.7 or newer. | ||
|
||
## Referencing this Configuration | ||
|
||
You can reference this config by installing the NPM package in your project: | ||
|
||
```bash | ||
npm install --save-dev @quantum-sec/typescript-config | ||
``` | ||
|
||
Then replace the contents of your `tsconfig.json` file with: | ||
|
||
```json | ||
{ | ||
"extends": "./node_modules/@quantum-sec/typescript-config" | ||
} | ||
``` | ||
|
||
You can overwrite settings defined in this configuration by specifying them in your project's `tsconfig.json`. |