Skip to content

Commit

Permalink
Fix package name and TypeScript casing (#9)
Browse files Browse the repository at this point in the history
* Fix package name and TypeScript casing

* Create wise-dolphins-fix.md

* Create wise-pots-search.md

* Delete .changeset/wise-pots-search.md

---------

Co-authored-by: Vijaya Krishna <[email protected]>
  • Loading branch information
karlhorky and Viijay-Kr authored Aug 22, 2024
1 parent cc7c100 commit 601df38
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .changeset/wise-dolphins-fix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"typescript-cleanup-definitions": patch
---

Fix package name and TypeScript casing
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Typescript CleanUp Definitions
# TypeScript CleanUp Definitions

- [Typescript CleanUp Definitions](#typescript-cleanup-definitions)
- [TypeScript CleanUp Definitions](#typescript-cleanup-definitions)
- [What is it ?](#what-is-it-)
- [Installation](#installation)
- [Usage](#usage)
Expand All @@ -10,15 +10,15 @@

## What is it ?

`typescript-cleanup-defs` is a simple typescript plugin that filters out [Go to definition](https://code.visualstudio.com/Docs/editor/editingevolved#_go-to-type-definition) results from any given set of declaration files
`typescript-cleanup-definitions` is a simple TypeScript plugin that filters out [Go to definition](https://code.visualstudio.com/Docs/editor/editingevolved#_go-to-type-definition) results from any given set of declaration files

## Installation

`npm install typescript-cleanup-defs`
`npm install typescript-cleanup-definitions`

or

`yarn add typescript-cleanup-defs`
`yarn add typescript-cleanup-definitions`

## Usage

Expand All @@ -31,7 +31,7 @@ Add the plugin to the `tsconfig.json`'s `compilerOptions`
"compilerOptions": {
"plugins": [
{
"name": "typescript-cleanup-defs",
"name": "typescript-cleanup-definitions",
"enable": true,
"modules": ["*.module.css", "*.client.d.ts"]
}
Expand All @@ -42,7 +42,7 @@ Add the plugin to the `tsconfig.json`'s `compilerOptions`

### VS Code Extension

Add it as a typescript server plugin to the `package.json` `contributes` section
Add it as a TypeScript server plugin to the `package.json` `contributes` section

```json
"contributes":{
Expand Down

0 comments on commit 601df38

Please sign in to comment.