@orientais/vscode
v1.115.0
Published
TypeScript definitions for the Orientais Code extension API (based on the VS Code extension API, MIT)
Maintainers
Readme
@orientais/vscode
TypeScript definitions for the Orientais Code extension API, intended for extension development and CI type checking.
License and Notice
- This npm package is built and published by Orientais Software / Orientais Code.
- The type information is derived from the open-source Visual Studio Code extension API definitions (following the
vscode.d.tssource). Copyright for the upstream API definitions belongs to Microsoft Corporation and is released under the MIT license. - This package is provided for type information only and does not guarantee runtime behavior or API stability.
Usage
npm install --save-dev @orientais/vscodeIn your tsconfig.json:
{
"compilerOptions": {
"types": ["orientais__vscode"]
}
}Then in your extension:
import type { Disposable, ExtensionContext } from 'vscode';