mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 16:15:41 +01:00
Align languages with upcoming editor release
This commit is contained in:
parent
e605ab21ef
commit
f86321e052
4 changed files with 64 additions and 26 deletions
57
languages.js
57
languages.js
|
|
@ -1,9 +1,24 @@
|
|||
module.exports = {
|
||||
apex: {
|
||||
entry: 'vs/basic-languages/apex/apex.contribution',
|
||||
worker: undefined,
|
||||
alias: undefined,
|
||||
},
|
||||
azcli: {
|
||||
entry: 'vs/basic-languages/azcli/azcli.contribution',
|
||||
worker: undefined,
|
||||
alias: undefined,
|
||||
},
|
||||
bat: {
|
||||
entry: 'vs/basic-languages/bat/bat.contribution',
|
||||
worker: undefined,
|
||||
alias: undefined,
|
||||
},
|
||||
clojure: {
|
||||
entry: 'vs/basic-languages/clojure/clojure.contribution',
|
||||
worker: undefined,
|
||||
alias: undefined,
|
||||
},
|
||||
coffee: {
|
||||
entry: 'vs/basic-languages/coffee/coffee.contribution',
|
||||
worker: undefined,
|
||||
|
|
@ -25,7 +40,10 @@ module.exports = {
|
|||
alias: undefined,
|
||||
},
|
||||
css: {
|
||||
entry: 'vs/language/css/monaco.contribution',
|
||||
entry: [
|
||||
'vs/basic-languages/css/css.contribution',
|
||||
'vs/language/css/monaco.contribution',
|
||||
],
|
||||
worker: {
|
||||
id: 'vs/language/css/cssWorker',
|
||||
entry: 'vs/language/css/css.worker',
|
||||
|
|
@ -55,7 +73,10 @@ module.exports = {
|
|||
alias: undefined,
|
||||
},
|
||||
html: {
|
||||
entry: 'vs/language/html/monaco.contribution',
|
||||
entry: [
|
||||
'vs/basic-languages/html/html.contribution',
|
||||
'vs/language/html/monaco.contribution',
|
||||
],
|
||||
worker: {
|
||||
id: 'vs/language/html/htmlWorker',
|
||||
entry: 'vs/language/html/html.worker',
|
||||
|
|
@ -74,6 +95,11 @@ module.exports = {
|
|||
worker: undefined,
|
||||
alias: undefined,
|
||||
},
|
||||
javascript: {
|
||||
entry: 'vs/basic-languages/javascript/javascript.contribution',
|
||||
worker: undefined,
|
||||
alias: undefined,
|
||||
},
|
||||
json: {
|
||||
entry: 'vs/language/json/monaco.contribution',
|
||||
worker: {
|
||||
|
|
@ -114,6 +140,11 @@ module.exports = {
|
|||
worker: undefined,
|
||||
alias: undefined,
|
||||
},
|
||||
perl: {
|
||||
entry: 'vs/basic-languages/perl/perl.contribution',
|
||||
worker: undefined,
|
||||
alias: undefined,
|
||||
},
|
||||
pgsql: {
|
||||
entry: 'vs/basic-languages/pgsql/pgsql.contribution',
|
||||
worker: undefined,
|
||||
|
|
@ -129,6 +160,11 @@ module.exports = {
|
|||
worker: undefined,
|
||||
alias: undefined,
|
||||
},
|
||||
powerquery: {
|
||||
entry: 'vs/basic-languages/powerquery/powerquery.contribution',
|
||||
worker: undefined,
|
||||
alias: undefined,
|
||||
},
|
||||
powershell: {
|
||||
entry: 'vs/basic-languages/powershell/powershell.contribution',
|
||||
worker: undefined,
|
||||
|
|
@ -179,11 +215,21 @@ module.exports = {
|
|||
worker: undefined,
|
||||
alias: undefined,
|
||||
},
|
||||
scheme: {
|
||||
entry: 'vs/basic-languages/scheme/scheme.contribution',
|
||||
worker: undefined,
|
||||
alias: undefined,
|
||||
},
|
||||
scss: {
|
||||
entry: 'vs/basic-languages/scss/scss.contribution',
|
||||
worker: undefined,
|
||||
alias: undefined,
|
||||
},
|
||||
shell: {
|
||||
entry: 'vs/basic-languages/shell/shell.contribution',
|
||||
worker: undefined,
|
||||
alias: undefined,
|
||||
},
|
||||
solidity: {
|
||||
entry: 'vs/basic-languages/solidity/solidity.contribution',
|
||||
worker: undefined,
|
||||
|
|
@ -205,14 +251,17 @@ module.exports = {
|
|||
alias: undefined,
|
||||
},
|
||||
typescript: {
|
||||
entry: 'vs/language/typescript/monaco.contribution',
|
||||
entry: [
|
||||
'vs/basic-languages/typescript/typescript.contribution',
|
||||
'vs/language/typescript/monaco.contribution',
|
||||
],
|
||||
worker: {
|
||||
id: 'vs/language/typescript/tsWorker',
|
||||
entry: 'vs/language/typescript/ts.worker',
|
||||
output: 'typescript.worker.js',
|
||||
fallback: 'vs/language/typescript/tsWorker',
|
||||
},
|
||||
alias: ['javascript'],
|
||||
alias: undefined,
|
||||
},
|
||||
vb: {
|
||||
entry: 'vs/basic-languages/vb/vb.contribution',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue