isoft-vscode 1.112.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -0
- package/index.d.ts +21246 -0
- package/package.json +21 -0
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# isoft-vscode
|
|
2
|
+
|
|
3
|
+
TypeScript definitions for the **Orientais Code** extension API, intended for extension development and CI type checking.
|
|
4
|
+
|
|
5
|
+
## License and Notice
|
|
6
|
+
|
|
7
|
+
- This npm package is built and published by **Orientais Software / Orientais Code**.
|
|
8
|
+
- The type information is derived from the open-source Visual Studio Code extension API definitions (following the `vscode.d.ts` source). Copyright for the upstream API definitions belongs to **Microsoft Corporation** and is released under the **MIT** license.
|
|
9
|
+
- This package is provided for type information only and does not guarantee runtime behavior or API stability.
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install --save-dev isoft-vscode
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
In your `tsconfig.json`:
|
|
18
|
+
```json
|
|
19
|
+
{
|
|
20
|
+
"compilerOptions": {
|
|
21
|
+
"types": ["isoft-vscode"]
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Then in your extension:
|
|
27
|
+
```ts
|
|
28
|
+
import type { Disposable, ExtensionContext } from 'vscode';
|
|
29
|
+
```
|