clean up typing description

bump version
This commit is contained in:
Igor Nesterenko 2018-08-20 21:20:39 +03:00
parent 661fd04454
commit 6bf8d839f3
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "monaco-json", "name": "monaco-json",
"version": "2.2.0", "version": "2.3.0",
"description": "JSON plugin for the Monaco Editor", "description": "JSON plugin for the Monaco Editor",
"scripts": { "scripts": {
"compile": "mrmdir ./out && tsc -p ./src/tsconfig.json && tsc -p ./src/tsconfig.esm.json", "compile": "mrmdir ./out && tsc -p ./src/tsconfig.json && tsc -p ./src/tsconfig.esm.json",

2
src/monaco.d.ts vendored
View file

@ -31,7 +31,7 @@ declare module monaco.languages.json {
readonly schema?: any; readonly schema?: any;
}[]; }[];
/** /**
* If set, the schema service would load schema content on-demand with 'fetch' if available, otherwise content would be taken from `schemas` property * If set, the schema service would load schema content on-demand with 'fetch' if available
*/ */
readonly enableSchemaRequest? : boolean readonly enableSchemaRequest? : boolean
} }