diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2025-05-26 18:34:02 +0200 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2025-05-26 18:34:02 +0200 |
| commit | 3cf5e4cf406bf7c1d67a5a71e7e7059b53aab59d (patch) | |
| tree | c0573feaa7445c1954c37ffe02c94402bfee9631 /editors | |
| parent | 9d8ffba8bec345f1dd1b2ec7716c168ae5c818bc (diff) | |
Support document parse on runtime package
Diffstat (limited to 'editors')
| -rw-r--r-- | editors/vscode/package.json | 2 | ||||
| -rw-r--r-- | editors/vscode/src/extension.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 7aa2f6c..6e32cc3 100644 --- a/editors/vscode/package.json +++ b/editors/vscode/package.json @@ -7,7 +7,7 @@ "type": "git", "url": "git://github.com/DanielGavin/ols.git" }, - "version": "0.1.36", + "version": "0.1.37", "engines": { "vscode": "^1.96.0" }, diff --git a/editors/vscode/src/extension.ts b/editors/vscode/src/extension.ts index da120c1..17fdcbd 100644 --- a/editors/vscode/src/extension.ts +++ b/editors/vscode/src/extension.ts @@ -29,7 +29,7 @@ const onDidChange: vscode.EventEmitter<void> = new vscode.EventEmitter<void>(); const JSON5 = require('json5') -const defaultConfig = JSON5.stringify( +const defaultConfig = JSON.stringify( { $schema: "https://raw.githubusercontent.com/DanielGavin/ols/master/misc/ols.schema.json", enable_document_symbols: true, |