Skip to content

Commit 268d9f0

Browse files
tsc-arguments | Adds command line argements to tsc-strict and changes… (#13)
* tsc-arguments | Adds command line argements to tsc-strict and changes bin folder * tsc-arguments | Updates readme changelog and version
1 parent 388f91b commit 268d9f0

File tree

10 files changed

+29190
-7350
lines changed

10 files changed

+29190
-7350
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project
66
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.1.2] - 2021-06-15
9+
10+
### Added
11+
- Rewrites some tests to `jest`
12+
- Adds feature to pass `tsc` parameters to `tsc-strict` command
13+
814
## [1.1.1] - 2021-08-29
915

1016
### Fixed

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,13 @@ yarn tsc-strict
7575

7676
All your strict files should be checked from command line.
7777

78+
You can also pass some `tsc` arguments to the `tsc-strict` to override default compiler options e.g.
79+
```shell
80+
yarn tsc-strict --strictNullChecks false
81+
```
82+
would not check for the strict null check in your files. The `tsc-strict` accepts all the arguments that regular `tsc` command
83+
accepts.
84+
7885
## Examples
7986
Let's consider this type and a variable
8087
```typescript

0 commit comments

Comments
 (0)