Website Structure

This commit is contained in:
supalerk-ar66 2026-01-13 10:46:40 +07:00
parent 62812f2090
commit 71f0676a62
22365 changed files with 4265753 additions and 791 deletions

33
Frontend-Learner/node_modules/@dxup/unimport/README.md generated vendored Normal file
View file

@ -0,0 +1,33 @@
# @dxup/unimport
[![version](https://img.shields.io/npm/v/@dxup/unimport?color=007EC7&label=npm)](https://www.npmjs.com/package/@dxup/unimport)
[![downloads](https://img.shields.io/npm/dm/@dxup/unimport?color=007EC7&label=downloads)](https://www.npmjs.com/package/@dxup/unimport)
[![license](https://img.shields.io/npm/l/@dxup/unimport?color=007EC7&label=license)](/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" }
]
}
}
```