mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 12:45:39 +01:00
Initial release
This commit is contained in:
parent
90042b4f97
commit
896c60a8b9
60 changed files with 36730 additions and 2 deletions
30
metadata.js
Normal file
30
metadata.js
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
(function() {
|
||||
|
||||
var METADATA = {
|
||||
CORE: {
|
||||
path: 'node_modules/monaco-editor-core/min/vs',
|
||||
srcPath: '/vscode/out/vs'
|
||||
// srcPath: '/vscode/out-monaco-editor-core/min/vs'
|
||||
},
|
||||
PLUGINS: [{
|
||||
name: 'monaco-typescript',
|
||||
contrib: 'vs/language/typescript/src/monaco.contribution',
|
||||
modulePrefix: 'vs/language/typescript',
|
||||
path: 'node_modules/monaco-typescript/release',
|
||||
srcPath: '/monaco-typescript/out'
|
||||
}, {
|
||||
name: 'monaco-languages',
|
||||
contrib: 'vs/basic-languages/src/monaco.contribution',
|
||||
modulePrefix: 'vs/basic-languages',
|
||||
path: 'node_modules/monaco-languages/release',
|
||||
srcPath: '/monaco-languages/out'
|
||||
}]
|
||||
}
|
||||
|
||||
if (typeof exports !== 'undefined') {
|
||||
exports.METADATA = METADATA
|
||||
} else {
|
||||
self.METADATA = METADATA;
|
||||
}
|
||||
|
||||
})();
|
||||
Loading…
Add table
Add a link
Reference in a new issue