Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 20 additions & 19 deletions example/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions example/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,5 @@
},
"include": [
"src"
],
"files": [
"../node_modules/monaco-editor/monaco.d.ts"
]
}
2 changes: 1 addition & 1 deletion example/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const path = require('path');
const CopyWebpackPlugin = require('copy-webpack-plugin');

const buildRoot = path.resolve(__dirname, "lib");
const monacoEditorPath = '../node_modules/monaco-editor/dev/vs';
const monacoEditorPath = '../node_modules/monaco-editor-core/dev/vs';

module.exports = {
entry: path.resolve(buildRoot, "main.js"),
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"dependencies": {
"glob-to-regexp": "^0.3.0",
"monaco-editor": "^0.10.0",
"monaco-editor-core": "^0.10.1",
"vscode-base-languageclient": "^0.0.1-alpha.2"
},
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// <reference path='../../node_modules/monaco-editor/monaco.d.ts'/>
/// <reference types='monaco-editor-core/monaco'/>

declare module monaco.editor {
export interface IStandaloneCodeEditor {
Expand Down
5 changes: 0 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,5 @@
},
"include": [
"src"
],
"files": [
"node_modules/monaco-editor/monaco.d.ts",
"typings/monaco/index.d.ts",
"typings/glob-to-regexp/index.d.ts"
]
}