We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c9d206 commit 3116a25Copy full SHA for 3116a25
AzureFunctions.Client/app/directives/monaco-editor.directive.ts
@@ -75,9 +75,15 @@ export class MonacoEditorDirective {
75
break;
76
case "py":
77
this._language = "python";
78
+ break;
79
+ case "ts":
80
+ this._language = "typescript";
81
82
// Monaco does not have sh, php
83
case "sh":
84
case "php":
85
+ default:
86
+ this._language = undefined;
87
88
}
89
AzureFunctions.Client/app/models/function-info.ts
@@ -52,6 +52,10 @@ export class FunctionInfoHelper {
52
lang = "Python";
53
//python
54
55
56
+ lang = "TypeScript";
57
+ //typescript
58
59
60
return lang;
61
0 commit comments