Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: microsoft/dtslint
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.2.0
Choose a base ref
...
head repository: microsoft/dtslint
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7506ca99b11a7a233f613f39b0074f7f319ddb9f
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Oct 18, 2021

  1. Fix typo in tsconfig.json example (#347)

    Andrew Luca authored Oct 18, 2021
    Copy the full SHA
    6a0d0a8 View commit details

Commits on Nov 18, 2021

  1. Copy the full SHA
    7506ca9 View commit details
Showing with 374 additions and 455 deletions.
  1. +1 −1 README.md
  2. +372 −453 package-lock.json
  3. +1 −1 package.json
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -46,7 +46,7 @@ Refer to the [handbook](http://www.typescriptlang.org/docs/handbook/declaration-
"strictNullChecks": true,
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames: true,
"forceConsistentCasingInFileNames": true,

// If the library is an external module (uses `export`), this allows your test file to import "mylib" instead of "./index".
// If the library is global (cannot be imported via `import` or `require`), leave this out.
Loading