├── .babelrc ├── .gitignore ├── .npmignore ├── INFO.CN.md ├── README.md ├── example ├── .eslintrc ├── index.html ├── main.js ├── package.json ├── renderer.js └── test │ ├── test.css │ ├── test.ejs │ ├── test.js │ ├── test.json │ └── test.jsx ├── gulpfile.js ├── loader.js ├── out ├── axml │ ├── language.configure.json │ ├── out │ │ ├── completions │ │ │ └── axml.json │ │ └── main.js │ ├── package.json │ ├── snippets │ │ └── axml.json │ └── syntaxes │ │ └── axml.tmLanguage ├── css │ ├── OSSREADME.json │ ├── client │ │ ├── out │ │ │ └── cssMain.js │ │ └── tsconfig.json │ ├── language-configuration.json │ ├── npm-shrinkwrap.json │ ├── package.json │ ├── package.nls.json │ ├── server │ │ ├── npm-shrinkwrap.json │ │ ├── out │ │ │ └── cssServerMain.js │ │ ├── package.json │ │ └── tsconfig.json │ ├── snippets │ │ └── css.json │ ├── syntaxes │ │ └── css.tmLanguage.json │ └── test │ │ └── colorize-results │ │ ├── test-variables_css.json │ │ └── test_css.json ├── ejs │ ├── language-configuration.json │ ├── package.json │ ├── snippets │ │ └── ejs.json │ └── syntaxes │ │ └── ejs.tmLanguage.json ├── emmet │ ├── OSSREADME.json │ ├── npm-shrinkwrap.json │ ├── out │ │ └── extension.js │ ├── package.json │ ├── package.nls.json │ └── tsconfig.json ├── eslint │ ├── out │ │ └── extension.js │ ├── package.json │ ├── server │ │ ├── package.json │ │ └── server.js │ └── tsconfig.json ├── html │ ├── OSSREADME.json │ ├── client │ │ ├── out │ │ │ └── htmlMain.js │ │ └── tsconfig.json │ ├── language-configuration.json │ ├── npm-shrinkwrap.json │ ├── package.json │ ├── package.nls.json │ ├── server │ │ ├── npm-shrinkwrap.json │ │ ├── out │ │ │ └── htmlServerMain.js │ │ ├── package.json │ │ └── tsconfig.json │ ├── snippet │ │ └── html.json │ ├── syntaxes │ │ └── html.json │ └── test │ │ └── colorize-results │ │ ├── 12750_html.json │ │ ├── 13448_html.json │ │ ├── 25920_html.json │ │ └── test_html.json ├── javascript │ ├── OSSREADME.json │ ├── javascript-language-configuration.json │ ├── npm-shrinkwrap.json │ ├── out │ │ └── javascriptMain.js │ ├── package.json │ ├── schemas │ │ └── jsconfig.schema.json │ ├── snippets │ │ ├── javascript.json │ │ └── javascriptreact.json │ ├── syntaxes │ │ ├── JavaScript.tmLanguage.json │ │ └── Regular Expressions (JavaScript).tmLanguage │ ├── tags-language-configuration.json │ ├── test │ │ └── colorize-results │ │ │ ├── test6916_js.json │ │ │ ├── test_js.json │ │ │ └── test_jsx.json │ └── tsconfig.json ├── json │ ├── OSSREADME.json │ ├── client │ │ ├── out │ │ │ └── jsonMain.js │ │ └── tsconfig.json │ ├── language-configuration.json │ ├── npm-shrinkwrap.json │ ├── package.json │ ├── package.nls.json │ ├── server │ │ ├── npm-shrinkwrap.json │ │ ├── out │ │ │ └── jsonServerMain.js │ │ ├── package.json │ │ └── tsconfig.json │ ├── syntaxes │ │ └── JSON.tmLanguage.json │ └── test │ │ ├── colorize-fixtures │ │ └── test.json │ │ └── colorize-results │ │ └── test_json.json ├── less │ ├── OSSREADME.json │ ├── language-configuration.json │ ├── package.json │ ├── syntaxes │ │ └── less.tmLanguage.json │ └── test │ │ └── colorize-results │ │ ├── 14119_less.json │ │ ├── test-cssvariables_less.json │ │ └── test_less.json ├── nunjucks │ ├── nunjucks.configuration.json │ ├── package.json │ └── syntaxes │ │ └── nunjucks.tmLanguage ├── scss │ ├── OSSREADME.json │ ├── language-configuration.json │ ├── package.json │ ├── syntaxes │ │ └── scss.json │ └── test │ │ └── colorize-results │ │ ├── test-cssvariables_scss.json │ │ └── test_scss.json └── typescript │ ├── OSSREADME.json │ ├── language-configuration.json │ ├── npm-shrinkwrap.json │ ├── out │ ├── features │ │ ├── baseCodeLensProvider.js │ │ ├── baseCodeLensProvider.js.map │ │ ├── bufferSyncSupport.js │ │ ├── bufferSyncSupport.js.map │ │ ├── codeActionProvider.js │ │ ├── codeActionProvider.js.map │ │ ├── completionItemProvider.js │ │ ├── completionItemProvider.js.map │ │ ├── definitionProvider.js │ │ ├── definitionProvider.js.map │ │ ├── definitionProviderBase.js │ │ ├── definitionProviderBase.js.map │ │ ├── directiveCommentCompletionProvider.js │ │ ├── directiveCommentCompletionProvider.js.map │ │ ├── documentHighlightProvider.js │ │ ├── documentHighlightProvider.js.map │ │ ├── documentSymbolProvider.js │ │ ├── documentSymbolProvider.js.map │ │ ├── formattingConfigurationManager.js │ │ ├── formattingConfigurationManager.js.map │ │ ├── formattingProvider.js │ │ ├── formattingProvider.js.map │ │ ├── hoverProvider.js │ │ ├── hoverProvider.js.map │ │ ├── implementationProvider.js │ │ ├── implementationProvider.js.map │ │ ├── implementationsCodeLensProvider.js │ │ ├── implementationsCodeLensProvider.js.map │ │ ├── jsDocCompletionProvider.js │ │ ├── jsDocCompletionProvider.js.map │ │ ├── previewer.js │ │ ├── previewer.js.map │ │ ├── refactorProvider.js │ │ ├── refactorProvider.js.map │ │ ├── referenceProvider.js │ │ ├── referenceProvider.js.map │ │ ├── referencesCodeLensProvider.js │ │ ├── referencesCodeLensProvider.js.map │ │ ├── renameProvider.js │ │ ├── renameProvider.js.map │ │ ├── signatureHelpProvider.js │ │ ├── signatureHelpProvider.js.map │ │ ├── taskProvider.js │ │ ├── taskProvider.js.map │ │ ├── typeDefinitionProvider.js │ │ ├── typeDefinitionProvider.js.map │ │ ├── workspaceSymbolProvider.js │ │ └── workspaceSymbolProvider.js.map │ ├── protocol.const.js │ ├── protocol.const.js.map │ ├── typescriptMain.js │ ├── typescriptMain.js.map │ ├── typescriptService.js │ ├── typescriptService.js.map │ ├── typescriptServiceClient.js │ ├── typescriptServiceClient.js.map │ └── utils │ │ ├── api.js │ │ ├── api.js.map │ │ ├── async.js │ │ ├── async.js.map │ │ ├── codeAction.js │ │ ├── codeAction.js.map │ │ ├── configuration.js │ │ ├── configuration.js.map │ │ ├── convert.js │ │ ├── convert.js.map │ │ ├── electron.js │ │ ├── electron.js.map │ │ ├── electronForkStart.js │ │ ├── electronForkStart.js.map │ │ ├── is.js │ │ ├── is.js.map │ │ ├── languageModeIds.js │ │ ├── languageModeIds.js.map │ │ ├── logger.js │ │ ├── logger.js.map │ │ ├── plugins.js │ │ ├── plugins.js.map │ │ ├── projectStatus.js │ │ ├── projectStatus.js.map │ │ ├── telemetry.js │ │ ├── telemetry.js.map │ │ ├── tracer.js │ │ ├── tracer.js.map │ │ ├── tsconfig.js │ │ ├── tsconfig.js.map │ │ ├── tsconfigProvider.js │ │ ├── tsconfigProvider.js.map │ │ ├── typingsStatus.js │ │ ├── typingsStatus.js.map │ │ ├── versionPicker.js │ │ ├── versionPicker.js.map │ │ ├── versionProvider.js │ │ ├── versionProvider.js.map │ │ ├── versionStatus.js │ │ ├── versionStatus.js.map │ │ ├── wireProtocol.js │ │ └── wireProtocol.js.map │ ├── package.json │ ├── package.nls.json │ ├── schemas │ └── tsconfig.schema.json │ ├── snippets │ ├── typescript.json │ └── typescriptreact.json │ ├── syntaxes │ ├── TypeScript.tmLanguage.json │ └── TypeScriptReact.tmLanguage.json │ ├── test │ ├── colorize-fixtures │ │ └── tsconfig.json │ └── colorize-results │ │ ├── test-brackets_tsx.json │ │ ├── test-function-inv_ts.json │ │ ├── test-issue11_ts.json │ │ ├── test-issue5431_ts.json │ │ ├── test-issue5465_ts.json │ │ ├── test-issue5566_ts.json │ │ ├── test-keywords_ts.json │ │ ├── test-members_ts.json │ │ ├── test-object-literals_ts.json │ │ ├── test-strings_ts.json │ │ ├── test-this_ts.json │ │ ├── test_ts.json │ │ └── tsconfig_json.json │ └── tsconfig.json ├── package.json ├── postinstall.js ├── scripts ├── clean.js ├── completions.js ├── install.js ├── javascript.js ├── js-extra.js ├── lark-sdk.js └── utils.js ├── src ├── ant │ ├── Event.js │ ├── commands.js │ ├── configure.js │ ├── const.d.js │ ├── convert.js │ ├── diagnostic.js │ ├── extensions.js │ ├── host.js │ ├── htmlContent.js │ ├── index.js │ ├── languageSelector.js │ ├── languages.js │ ├── memento.js │ ├── promise.js │ ├── snippets.js │ ├── telemetry.js │ ├── types.js │ ├── watcher.js │ ├── window.js │ └── workspace.js ├── completions │ └── abridge.json └── editor │ ├── ExtensionContext.js │ ├── GrammarRegistry.js │ ├── MirrorModel.js │ ├── editorOptions.js │ ├── hook.js │ ├── index.js │ ├── prefixSumComputer.js │ ├── registerExtensions.js │ ├── textDocument.js │ ├── textEditor.js │ ├── textLine.js │ ├── theme.js │ ├── uint.js │ ├── uri.js │ └── wordHelper.js ├── themes └── theme-defaults │ ├── package.json │ └── themes │ ├── dark_defaults.json │ ├── dark_plus.json │ ├── dark_vs.json │ ├── hc_black.json │ ├── hc_black_defaults.json │ ├── light_defaults.json │ ├── light_plus.json │ └── light_vs.json └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/.npmignore -------------------------------------------------------------------------------- /INFO.CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/INFO.CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/README.md -------------------------------------------------------------------------------- /example/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/example/.eslintrc -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/example/index.html -------------------------------------------------------------------------------- /example/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/example/main.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/example/package.json -------------------------------------------------------------------------------- /example/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/example/renderer.js -------------------------------------------------------------------------------- /example/test/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/example/test/test.css -------------------------------------------------------------------------------- /example/test/test.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/example/test/test.ejs -------------------------------------------------------------------------------- /example/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/example/test/test.js -------------------------------------------------------------------------------- /example/test/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/example/test/test.json -------------------------------------------------------------------------------- /example/test/test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/example/test/test.jsx -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/gulpfile.js -------------------------------------------------------------------------------- /loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/loader.js -------------------------------------------------------------------------------- /out/axml/language.configure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/axml/language.configure.json -------------------------------------------------------------------------------- /out/axml/out/completions/axml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/axml/out/completions/axml.json -------------------------------------------------------------------------------- /out/axml/out/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/axml/out/main.js -------------------------------------------------------------------------------- /out/axml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/axml/package.json -------------------------------------------------------------------------------- /out/axml/snippets/axml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/axml/snippets/axml.json -------------------------------------------------------------------------------- /out/axml/syntaxes/axml.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/axml/syntaxes/axml.tmLanguage -------------------------------------------------------------------------------- /out/css/OSSREADME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/css/OSSREADME.json -------------------------------------------------------------------------------- /out/css/client/out/cssMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/css/client/out/cssMain.js -------------------------------------------------------------------------------- /out/css/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/css/client/tsconfig.json -------------------------------------------------------------------------------- /out/css/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/css/language-configuration.json -------------------------------------------------------------------------------- /out/css/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/css/npm-shrinkwrap.json -------------------------------------------------------------------------------- /out/css/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/css/package.json -------------------------------------------------------------------------------- /out/css/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/css/package.nls.json -------------------------------------------------------------------------------- /out/css/server/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/css/server/npm-shrinkwrap.json -------------------------------------------------------------------------------- /out/css/server/out/cssServerMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/css/server/out/cssServerMain.js -------------------------------------------------------------------------------- /out/css/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/css/server/package.json -------------------------------------------------------------------------------- /out/css/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/css/server/tsconfig.json -------------------------------------------------------------------------------- /out/css/snippets/css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/css/snippets/css.json -------------------------------------------------------------------------------- /out/css/syntaxes/css.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/css/syntaxes/css.tmLanguage.json -------------------------------------------------------------------------------- /out/css/test/colorize-results/test-variables_css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/css/test/colorize-results/test-variables_css.json -------------------------------------------------------------------------------- /out/css/test/colorize-results/test_css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/css/test/colorize-results/test_css.json -------------------------------------------------------------------------------- /out/ejs/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/ejs/language-configuration.json -------------------------------------------------------------------------------- /out/ejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/ejs/package.json -------------------------------------------------------------------------------- /out/ejs/snippets/ejs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/ejs/snippets/ejs.json -------------------------------------------------------------------------------- /out/ejs/syntaxes/ejs.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/ejs/syntaxes/ejs.tmLanguage.json -------------------------------------------------------------------------------- /out/emmet/OSSREADME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/emmet/OSSREADME.json -------------------------------------------------------------------------------- /out/emmet/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/emmet/npm-shrinkwrap.json -------------------------------------------------------------------------------- /out/emmet/out/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/emmet/out/extension.js -------------------------------------------------------------------------------- /out/emmet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/emmet/package.json -------------------------------------------------------------------------------- /out/emmet/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/emmet/package.nls.json -------------------------------------------------------------------------------- /out/emmet/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/emmet/tsconfig.json -------------------------------------------------------------------------------- /out/eslint/out/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/eslint/out/extension.js -------------------------------------------------------------------------------- /out/eslint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/eslint/package.json -------------------------------------------------------------------------------- /out/eslint/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/eslint/server/package.json -------------------------------------------------------------------------------- /out/eslint/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/eslint/server/server.js -------------------------------------------------------------------------------- /out/eslint/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/eslint/tsconfig.json -------------------------------------------------------------------------------- /out/html/OSSREADME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/html/OSSREADME.json -------------------------------------------------------------------------------- /out/html/client/out/htmlMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/html/client/out/htmlMain.js -------------------------------------------------------------------------------- /out/html/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/html/client/tsconfig.json -------------------------------------------------------------------------------- /out/html/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/html/language-configuration.json -------------------------------------------------------------------------------- /out/html/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/html/npm-shrinkwrap.json -------------------------------------------------------------------------------- /out/html/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/html/package.json -------------------------------------------------------------------------------- /out/html/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/html/package.nls.json -------------------------------------------------------------------------------- /out/html/server/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/html/server/npm-shrinkwrap.json -------------------------------------------------------------------------------- /out/html/server/out/htmlServerMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/html/server/out/htmlServerMain.js -------------------------------------------------------------------------------- /out/html/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/html/server/package.json -------------------------------------------------------------------------------- /out/html/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/html/server/tsconfig.json -------------------------------------------------------------------------------- /out/html/snippet/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/html/snippet/html.json -------------------------------------------------------------------------------- /out/html/syntaxes/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/html/syntaxes/html.json -------------------------------------------------------------------------------- /out/html/test/colorize-results/12750_html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/html/test/colorize-results/12750_html.json -------------------------------------------------------------------------------- /out/html/test/colorize-results/13448_html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/html/test/colorize-results/13448_html.json -------------------------------------------------------------------------------- /out/html/test/colorize-results/25920_html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/html/test/colorize-results/25920_html.json -------------------------------------------------------------------------------- /out/html/test/colorize-results/test_html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/html/test/colorize-results/test_html.json -------------------------------------------------------------------------------- /out/javascript/OSSREADME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/javascript/OSSREADME.json -------------------------------------------------------------------------------- /out/javascript/javascript-language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/javascript/javascript-language-configuration.json -------------------------------------------------------------------------------- /out/javascript/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/javascript/npm-shrinkwrap.json -------------------------------------------------------------------------------- /out/javascript/out/javascriptMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/javascript/out/javascriptMain.js -------------------------------------------------------------------------------- /out/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/javascript/package.json -------------------------------------------------------------------------------- /out/javascript/schemas/jsconfig.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/javascript/schemas/jsconfig.schema.json -------------------------------------------------------------------------------- /out/javascript/snippets/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/javascript/snippets/javascript.json -------------------------------------------------------------------------------- /out/javascript/snippets/javascriptreact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/javascript/snippets/javascriptreact.json -------------------------------------------------------------------------------- /out/javascript/syntaxes/JavaScript.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/javascript/syntaxes/JavaScript.tmLanguage.json -------------------------------------------------------------------------------- /out/javascript/syntaxes/Regular Expressions (JavaScript).tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/javascript/syntaxes/Regular Expressions (JavaScript).tmLanguage -------------------------------------------------------------------------------- /out/javascript/tags-language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/javascript/tags-language-configuration.json -------------------------------------------------------------------------------- /out/javascript/test/colorize-results/test6916_js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/javascript/test/colorize-results/test6916_js.json -------------------------------------------------------------------------------- /out/javascript/test/colorize-results/test_js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/javascript/test/colorize-results/test_js.json -------------------------------------------------------------------------------- /out/javascript/test/colorize-results/test_jsx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/javascript/test/colorize-results/test_jsx.json -------------------------------------------------------------------------------- /out/javascript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/javascript/tsconfig.json -------------------------------------------------------------------------------- /out/json/OSSREADME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/json/OSSREADME.json -------------------------------------------------------------------------------- /out/json/client/out/jsonMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/json/client/out/jsonMain.js -------------------------------------------------------------------------------- /out/json/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/json/client/tsconfig.json -------------------------------------------------------------------------------- /out/json/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/json/language-configuration.json -------------------------------------------------------------------------------- /out/json/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/json/npm-shrinkwrap.json -------------------------------------------------------------------------------- /out/json/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/json/package.json -------------------------------------------------------------------------------- /out/json/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/json/package.nls.json -------------------------------------------------------------------------------- /out/json/server/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/json/server/npm-shrinkwrap.json -------------------------------------------------------------------------------- /out/json/server/out/jsonServerMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/json/server/out/jsonServerMain.js -------------------------------------------------------------------------------- /out/json/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/json/server/package.json -------------------------------------------------------------------------------- /out/json/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/json/server/tsconfig.json -------------------------------------------------------------------------------- /out/json/syntaxes/JSON.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/json/syntaxes/JSON.tmLanguage.json -------------------------------------------------------------------------------- /out/json/test/colorize-fixtures/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/json/test/colorize-fixtures/test.json -------------------------------------------------------------------------------- /out/json/test/colorize-results/test_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/json/test/colorize-results/test_json.json -------------------------------------------------------------------------------- /out/less/OSSREADME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/less/OSSREADME.json -------------------------------------------------------------------------------- /out/less/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/less/language-configuration.json -------------------------------------------------------------------------------- /out/less/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/less/package.json -------------------------------------------------------------------------------- /out/less/syntaxes/less.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/less/syntaxes/less.tmLanguage.json -------------------------------------------------------------------------------- /out/less/test/colorize-results/14119_less.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/less/test/colorize-results/14119_less.json -------------------------------------------------------------------------------- /out/less/test/colorize-results/test-cssvariables_less.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/less/test/colorize-results/test-cssvariables_less.json -------------------------------------------------------------------------------- /out/less/test/colorize-results/test_less.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/less/test/colorize-results/test_less.json -------------------------------------------------------------------------------- /out/nunjucks/nunjucks.configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/nunjucks/nunjucks.configuration.json -------------------------------------------------------------------------------- /out/nunjucks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/nunjucks/package.json -------------------------------------------------------------------------------- /out/nunjucks/syntaxes/nunjucks.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/nunjucks/syntaxes/nunjucks.tmLanguage -------------------------------------------------------------------------------- /out/scss/OSSREADME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/scss/OSSREADME.json -------------------------------------------------------------------------------- /out/scss/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/scss/language-configuration.json -------------------------------------------------------------------------------- /out/scss/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/scss/package.json -------------------------------------------------------------------------------- /out/scss/syntaxes/scss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/scss/syntaxes/scss.json -------------------------------------------------------------------------------- /out/scss/test/colorize-results/test-cssvariables_scss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/scss/test/colorize-results/test-cssvariables_scss.json -------------------------------------------------------------------------------- /out/scss/test/colorize-results/test_scss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/scss/test/colorize-results/test_scss.json -------------------------------------------------------------------------------- /out/typescript/OSSREADME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/OSSREADME.json -------------------------------------------------------------------------------- /out/typescript/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/language-configuration.json -------------------------------------------------------------------------------- /out/typescript/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/npm-shrinkwrap.json -------------------------------------------------------------------------------- /out/typescript/out/features/baseCodeLensProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/baseCodeLensProvider.js -------------------------------------------------------------------------------- /out/typescript/out/features/baseCodeLensProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/baseCodeLensProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/bufferSyncSupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/bufferSyncSupport.js -------------------------------------------------------------------------------- /out/typescript/out/features/bufferSyncSupport.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/bufferSyncSupport.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/codeActionProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/codeActionProvider.js -------------------------------------------------------------------------------- /out/typescript/out/features/codeActionProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/codeActionProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/completionItemProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/completionItemProvider.js -------------------------------------------------------------------------------- /out/typescript/out/features/completionItemProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/completionItemProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/definitionProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/definitionProvider.js -------------------------------------------------------------------------------- /out/typescript/out/features/definitionProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/definitionProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/definitionProviderBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/definitionProviderBase.js -------------------------------------------------------------------------------- /out/typescript/out/features/definitionProviderBase.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/definitionProviderBase.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/directiveCommentCompletionProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/directiveCommentCompletionProvider.js -------------------------------------------------------------------------------- /out/typescript/out/features/directiveCommentCompletionProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/directiveCommentCompletionProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/documentHighlightProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/documentHighlightProvider.js -------------------------------------------------------------------------------- /out/typescript/out/features/documentHighlightProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/documentHighlightProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/documentSymbolProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/documentSymbolProvider.js -------------------------------------------------------------------------------- /out/typescript/out/features/documentSymbolProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/documentSymbolProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/formattingConfigurationManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/formattingConfigurationManager.js -------------------------------------------------------------------------------- /out/typescript/out/features/formattingConfigurationManager.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/formattingConfigurationManager.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/formattingProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/formattingProvider.js -------------------------------------------------------------------------------- /out/typescript/out/features/formattingProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/formattingProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/hoverProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/hoverProvider.js -------------------------------------------------------------------------------- /out/typescript/out/features/hoverProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/hoverProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/implementationProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/implementationProvider.js -------------------------------------------------------------------------------- /out/typescript/out/features/implementationProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/implementationProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/implementationsCodeLensProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/implementationsCodeLensProvider.js -------------------------------------------------------------------------------- /out/typescript/out/features/implementationsCodeLensProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/implementationsCodeLensProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/jsDocCompletionProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/jsDocCompletionProvider.js -------------------------------------------------------------------------------- /out/typescript/out/features/jsDocCompletionProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/jsDocCompletionProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/previewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/previewer.js -------------------------------------------------------------------------------- /out/typescript/out/features/previewer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/previewer.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/refactorProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/refactorProvider.js -------------------------------------------------------------------------------- /out/typescript/out/features/refactorProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/refactorProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/referenceProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/referenceProvider.js -------------------------------------------------------------------------------- /out/typescript/out/features/referenceProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/referenceProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/referencesCodeLensProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/referencesCodeLensProvider.js -------------------------------------------------------------------------------- /out/typescript/out/features/referencesCodeLensProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/referencesCodeLensProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/renameProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/renameProvider.js -------------------------------------------------------------------------------- /out/typescript/out/features/renameProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/renameProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/signatureHelpProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/signatureHelpProvider.js -------------------------------------------------------------------------------- /out/typescript/out/features/signatureHelpProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/signatureHelpProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/taskProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/taskProvider.js -------------------------------------------------------------------------------- /out/typescript/out/features/taskProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/taskProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/typeDefinitionProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/typeDefinitionProvider.js -------------------------------------------------------------------------------- /out/typescript/out/features/typeDefinitionProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/typeDefinitionProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/features/workspaceSymbolProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/workspaceSymbolProvider.js -------------------------------------------------------------------------------- /out/typescript/out/features/workspaceSymbolProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/features/workspaceSymbolProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/protocol.const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/protocol.const.js -------------------------------------------------------------------------------- /out/typescript/out/protocol.const.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/protocol.const.js.map -------------------------------------------------------------------------------- /out/typescript/out/typescriptMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/typescriptMain.js -------------------------------------------------------------------------------- /out/typescript/out/typescriptMain.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/typescriptMain.js.map -------------------------------------------------------------------------------- /out/typescript/out/typescriptService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/typescriptService.js -------------------------------------------------------------------------------- /out/typescript/out/typescriptService.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/typescriptService.js.map -------------------------------------------------------------------------------- /out/typescript/out/typescriptServiceClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/typescriptServiceClient.js -------------------------------------------------------------------------------- /out/typescript/out/typescriptServiceClient.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/typescriptServiceClient.js.map -------------------------------------------------------------------------------- /out/typescript/out/utils/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/api.js -------------------------------------------------------------------------------- /out/typescript/out/utils/api.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/api.js.map -------------------------------------------------------------------------------- /out/typescript/out/utils/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/async.js -------------------------------------------------------------------------------- /out/typescript/out/utils/async.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/async.js.map -------------------------------------------------------------------------------- /out/typescript/out/utils/codeAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/codeAction.js -------------------------------------------------------------------------------- /out/typescript/out/utils/codeAction.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/codeAction.js.map -------------------------------------------------------------------------------- /out/typescript/out/utils/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/configuration.js -------------------------------------------------------------------------------- /out/typescript/out/utils/configuration.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/configuration.js.map -------------------------------------------------------------------------------- /out/typescript/out/utils/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/convert.js -------------------------------------------------------------------------------- /out/typescript/out/utils/convert.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/convert.js.map -------------------------------------------------------------------------------- /out/typescript/out/utils/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/electron.js -------------------------------------------------------------------------------- /out/typescript/out/utils/electron.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/electron.js.map -------------------------------------------------------------------------------- /out/typescript/out/utils/electronForkStart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/electronForkStart.js -------------------------------------------------------------------------------- /out/typescript/out/utils/electronForkStart.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/electronForkStart.js.map -------------------------------------------------------------------------------- /out/typescript/out/utils/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/is.js -------------------------------------------------------------------------------- /out/typescript/out/utils/is.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/is.js.map -------------------------------------------------------------------------------- /out/typescript/out/utils/languageModeIds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/languageModeIds.js -------------------------------------------------------------------------------- /out/typescript/out/utils/languageModeIds.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/languageModeIds.js.map -------------------------------------------------------------------------------- /out/typescript/out/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/logger.js -------------------------------------------------------------------------------- /out/typescript/out/utils/logger.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/logger.js.map -------------------------------------------------------------------------------- /out/typescript/out/utils/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/plugins.js -------------------------------------------------------------------------------- /out/typescript/out/utils/plugins.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/plugins.js.map -------------------------------------------------------------------------------- /out/typescript/out/utils/projectStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/projectStatus.js -------------------------------------------------------------------------------- /out/typescript/out/utils/projectStatus.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/projectStatus.js.map -------------------------------------------------------------------------------- /out/typescript/out/utils/telemetry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/telemetry.js -------------------------------------------------------------------------------- /out/typescript/out/utils/telemetry.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/telemetry.js.map -------------------------------------------------------------------------------- /out/typescript/out/utils/tracer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/tracer.js -------------------------------------------------------------------------------- /out/typescript/out/utils/tracer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/tracer.js.map -------------------------------------------------------------------------------- /out/typescript/out/utils/tsconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/tsconfig.js -------------------------------------------------------------------------------- /out/typescript/out/utils/tsconfig.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/tsconfig.js.map -------------------------------------------------------------------------------- /out/typescript/out/utils/tsconfigProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/tsconfigProvider.js -------------------------------------------------------------------------------- /out/typescript/out/utils/tsconfigProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/tsconfigProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/utils/typingsStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/typingsStatus.js -------------------------------------------------------------------------------- /out/typescript/out/utils/typingsStatus.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/typingsStatus.js.map -------------------------------------------------------------------------------- /out/typescript/out/utils/versionPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/versionPicker.js -------------------------------------------------------------------------------- /out/typescript/out/utils/versionPicker.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/versionPicker.js.map -------------------------------------------------------------------------------- /out/typescript/out/utils/versionProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/versionProvider.js -------------------------------------------------------------------------------- /out/typescript/out/utils/versionProvider.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/versionProvider.js.map -------------------------------------------------------------------------------- /out/typescript/out/utils/versionStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/versionStatus.js -------------------------------------------------------------------------------- /out/typescript/out/utils/versionStatus.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/versionStatus.js.map -------------------------------------------------------------------------------- /out/typescript/out/utils/wireProtocol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/wireProtocol.js -------------------------------------------------------------------------------- /out/typescript/out/utils/wireProtocol.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/out/utils/wireProtocol.js.map -------------------------------------------------------------------------------- /out/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/package.json -------------------------------------------------------------------------------- /out/typescript/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/package.nls.json -------------------------------------------------------------------------------- /out/typescript/schemas/tsconfig.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/schemas/tsconfig.schema.json -------------------------------------------------------------------------------- /out/typescript/snippets/typescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/snippets/typescript.json -------------------------------------------------------------------------------- /out/typescript/snippets/typescriptreact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/snippets/typescriptreact.json -------------------------------------------------------------------------------- /out/typescript/syntaxes/TypeScript.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/syntaxes/TypeScript.tmLanguage.json -------------------------------------------------------------------------------- /out/typescript/syntaxes/TypeScriptReact.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/syntaxes/TypeScriptReact.tmLanguage.json -------------------------------------------------------------------------------- /out/typescript/test/colorize-fixtures/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es6" 4 | } 5 | } -------------------------------------------------------------------------------- /out/typescript/test/colorize-results/test-brackets_tsx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/test/colorize-results/test-brackets_tsx.json -------------------------------------------------------------------------------- /out/typescript/test/colorize-results/test-function-inv_ts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/test/colorize-results/test-function-inv_ts.json -------------------------------------------------------------------------------- /out/typescript/test/colorize-results/test-issue11_ts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/test/colorize-results/test-issue11_ts.json -------------------------------------------------------------------------------- /out/typescript/test/colorize-results/test-issue5431_ts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/test/colorize-results/test-issue5431_ts.json -------------------------------------------------------------------------------- /out/typescript/test/colorize-results/test-issue5465_ts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/test/colorize-results/test-issue5465_ts.json -------------------------------------------------------------------------------- /out/typescript/test/colorize-results/test-issue5566_ts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/test/colorize-results/test-issue5566_ts.json -------------------------------------------------------------------------------- /out/typescript/test/colorize-results/test-keywords_ts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/test/colorize-results/test-keywords_ts.json -------------------------------------------------------------------------------- /out/typescript/test/colorize-results/test-members_ts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/test/colorize-results/test-members_ts.json -------------------------------------------------------------------------------- /out/typescript/test/colorize-results/test-object-literals_ts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/test/colorize-results/test-object-literals_ts.json -------------------------------------------------------------------------------- /out/typescript/test/colorize-results/test-strings_ts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/test/colorize-results/test-strings_ts.json -------------------------------------------------------------------------------- /out/typescript/test/colorize-results/test-this_ts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/test/colorize-results/test-this_ts.json -------------------------------------------------------------------------------- /out/typescript/test/colorize-results/test_ts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/test/colorize-results/test_ts.json -------------------------------------------------------------------------------- /out/typescript/test/colorize-results/tsconfig_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/test/colorize-results/tsconfig_json.json -------------------------------------------------------------------------------- /out/typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/out/typescript/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/package.json -------------------------------------------------------------------------------- /postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/postinstall.js -------------------------------------------------------------------------------- /scripts/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/scripts/clean.js -------------------------------------------------------------------------------- /scripts/completions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/scripts/completions.js -------------------------------------------------------------------------------- /scripts/install.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/scripts/javascript.js -------------------------------------------------------------------------------- /scripts/js-extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/scripts/js-extra.js -------------------------------------------------------------------------------- /scripts/lark-sdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/scripts/lark-sdk.js -------------------------------------------------------------------------------- /scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/scripts/utils.js -------------------------------------------------------------------------------- /src/ant/Event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/ant/Event.js -------------------------------------------------------------------------------- /src/ant/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/ant/commands.js -------------------------------------------------------------------------------- /src/ant/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/ant/configure.js -------------------------------------------------------------------------------- /src/ant/const.d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/ant/const.d.js -------------------------------------------------------------------------------- /src/ant/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/ant/convert.js -------------------------------------------------------------------------------- /src/ant/diagnostic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/ant/diagnostic.js -------------------------------------------------------------------------------- /src/ant/extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/ant/extensions.js -------------------------------------------------------------------------------- /src/ant/host.js: -------------------------------------------------------------------------------- 1 | export default class Host { 2 | 3 | } -------------------------------------------------------------------------------- /src/ant/htmlContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/ant/htmlContent.js -------------------------------------------------------------------------------- /src/ant/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/ant/index.js -------------------------------------------------------------------------------- /src/ant/languageSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/ant/languageSelector.js -------------------------------------------------------------------------------- /src/ant/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/ant/languages.js -------------------------------------------------------------------------------- /src/ant/memento.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/ant/memento.js -------------------------------------------------------------------------------- /src/ant/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/ant/promise.js -------------------------------------------------------------------------------- /src/ant/snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/ant/snippets.js -------------------------------------------------------------------------------- /src/ant/telemetry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/ant/telemetry.js -------------------------------------------------------------------------------- /src/ant/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/ant/types.js -------------------------------------------------------------------------------- /src/ant/watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/ant/watcher.js -------------------------------------------------------------------------------- /src/ant/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/ant/window.js -------------------------------------------------------------------------------- /src/ant/workspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/ant/workspace.js -------------------------------------------------------------------------------- /src/completions/abridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/completions/abridge.json -------------------------------------------------------------------------------- /src/editor/ExtensionContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/editor/ExtensionContext.js -------------------------------------------------------------------------------- /src/editor/GrammarRegistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/editor/GrammarRegistry.js -------------------------------------------------------------------------------- /src/editor/MirrorModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/editor/MirrorModel.js -------------------------------------------------------------------------------- /src/editor/editorOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/editor/editorOptions.js -------------------------------------------------------------------------------- /src/editor/hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/editor/hook.js -------------------------------------------------------------------------------- /src/editor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/editor/index.js -------------------------------------------------------------------------------- /src/editor/prefixSumComputer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/editor/prefixSumComputer.js -------------------------------------------------------------------------------- /src/editor/registerExtensions.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/editor/textDocument.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/editor/textDocument.js -------------------------------------------------------------------------------- /src/editor/textEditor.js: -------------------------------------------------------------------------------- 1 | export default class TextEditor { 2 | 3 | } -------------------------------------------------------------------------------- /src/editor/textLine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/editor/textLine.js -------------------------------------------------------------------------------- /src/editor/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/editor/theme.js -------------------------------------------------------------------------------- /src/editor/uint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/editor/uint.js -------------------------------------------------------------------------------- /src/editor/uri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/editor/uri.js -------------------------------------------------------------------------------- /src/editor/wordHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/src/editor/wordHelper.js -------------------------------------------------------------------------------- /themes/theme-defaults/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/themes/theme-defaults/package.json -------------------------------------------------------------------------------- /themes/theme-defaults/themes/dark_defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/themes/theme-defaults/themes/dark_defaults.json -------------------------------------------------------------------------------- /themes/theme-defaults/themes/dark_plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/themes/theme-defaults/themes/dark_plus.json -------------------------------------------------------------------------------- /themes/theme-defaults/themes/dark_vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/themes/theme-defaults/themes/dark_vs.json -------------------------------------------------------------------------------- /themes/theme-defaults/themes/hc_black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/themes/theme-defaults/themes/hc_black.json -------------------------------------------------------------------------------- /themes/theme-defaults/themes/hc_black_defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/themes/theme-defaults/themes/hc_black_defaults.json -------------------------------------------------------------------------------- /themes/theme-defaults/themes/light_defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/themes/theme-defaults/themes/light_defaults.json -------------------------------------------------------------------------------- /themes/theme-defaults/themes/light_plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/themes/theme-defaults/themes/light_plus.json -------------------------------------------------------------------------------- /themes/theme-defaults/themes/light_vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/themes/theme-defaults/themes/light_vs.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenshiqi0/ws-monaco/HEAD/webpack.config.js --------------------------------------------------------------------------------