git clone https://github.com/microsoft/vscode-json-languageservice cd vscode-json-languageservice yarn Useyarn testto compile and run tests How can I run and debug the service? open the folder in VSCode. set breakpoints, e.g. injsonCompletion.ts ...
.vscode build src .eslintrc.json .gitignore .mocharc.json .npmignore .travis.yml CHANGELOG.md LICENSE.md README.md package-lock.json package.json Breadcrumbs vscode-json-languageservice / Latest commit Cannot retrieve latest commit at this time. ...
package-lock.json prepare 5.4.1 (#242) Aug 27, 2024 package.json prepare 5.4.1 (#242) Aug 27, 2024 README Code of conduct License Security vscode-json-languageservice JSON language service extracted from VSCode to be reused, e.g in the Monaco editor. ...
1 change: 0 additions & 1 deletion 1 src/jsonLanguageService.ts Original file line numberDiff line numberDiff line change @@ -32,7 +32,6 @@ export type JSONDocument = { getNodeFromOffset(offset: number, includeRightBound?: boolean): ASTNode | undefined; }; export * from './json...
Trying to compile vscode-json-languagesserver (not "service") results in an error because npm-released version of this package is missing so type definitinions. node_modules/vscode-json-languageservice/lib/umd/jsonLanguageService.d.ts:7:...
microsoft/vscode-json-languageservicePublic NotificationsYou must be signed in to change notification settings Fork107 Star252 New issue Add error code forproperty keys must be doublequoted#196 Merged rzhao271merged 1 commit intomicrosoft:mainfromzardoy:error-codes ...
The TypeScript language service doesn't seem to be respecting the tsconfig.json; I'm always getting completions for browser APIs even if I specify noLib: true or manually specify the lib array in the compilerOptions. I'm also not getting completions from other flies in the include array. ...