33 lines
876 B
Markdown
33 lines
876 B
Markdown
# @dxup/unimport
|
|
|
|
[](https://www.npmjs.com/package/@dxup/unimport)
|
|
[](https://www.npmjs.com/package/@dxup/unimport)
|
|
[](/LICENSE)
|
|
|
|
This is a TypeScript plugin that reduces user friction when using navigation features on auto imported variables generated by `unimport`. It aims to make the generated declaration files transparent to users.
|
|
|
|
## Features
|
|
|
|
- [x] Go to Definition
|
|
- [x] Go to References
|
|
- [x] Rename Symbol
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
pnpm i -D @dxup/unimport
|
|
```
|
|
|
|
## Usage
|
|
|
|
Add the following to your `tsconfig.json`:
|
|
|
|
```json
|
|
{
|
|
"compilerOptions": {
|
|
"plugins": [
|
|
{ "name": "@dxup/unimport" }
|
|
]
|
|
}
|
|
}
|
|
```
|