Merge pull request #20082 from armanio123/KendoOptionalMin

Modified Kendo regex to include -ui folders and files without min
This commit is contained in:
Armando Aguirre
2017-11-16 17:37:24 -08:00
committed by GitHub
3 changed files with 7 additions and 3 deletions

View File

@@ -145,7 +145,7 @@ namespace ts.server {
},
"Kendo": {
// e.g. /Kendo3/wwwroot/lib/kendo/kendo.all.min.js
match: /^(.*\/kendo)\/kendo\.all\.min\.js$/i,
match: /^(.*\/kendo(-ui)?)\/kendo\.all(\.min)?\.js$/i,
exclude: [["^", 1, "/.*"]],
types: ["kendo-ui"]
},

View File

@@ -10,7 +10,7 @@
"types": ["winjs"]
},
"Kendo": {
"match": "^(.*\\/kendo)\\/kendo\\.all\\.min\\.js$",
"match": "^(.*\\/kendo(-ui)?)\\/kendo\\.all(\\.min)?\\.js$",
"exclude": [["^", 1, "/.*"]],
"types": ["kendo-ui"]
},