Fix regex for real this time

This commit is contained in:
Ryan Cavanaugh 2017-04-06 13:19:22 -07:00
parent 857b762edd
commit 439f1c77bd

View File

@ -68,16 +68,20 @@ namespace ts.server {
"types": ["jquery"]
},
"WinJS": {
"match": /^(.*\/winjs)\/base\.js$/i, // If the winjs/base.js file is found..
// e.g. c:/temp/UWApp1/lib/winjs-4.0.1/js/base.js
"match": /^(.*\/winjs-[.\d]+)\/js\/base\.js$/i, // If the winjs/base.js file is found..
"exclude": [["^", 1, "/.*"]], // ..then exclude all files under the winjs folder
"types": ["winjs"] // And fetch the @types package for WinJS
},
"Kendo": {
"match": /^(.*\/kendo\/.+\.js$/i,
"exclude": [["^", 1, "/.*"]]
// e.g. /Kendo3/wwwroot/lib/kendo/kendo.all.min.js
"match": /^(.*\/kendo)\/kendo\.all\.min\.js$/i,
"exclude": [["^", 1, "/.*"]],
"types": ["kendo-ui"]
},
"Office Nuget": {
"match": /^(.*\/1\/office)\/excel\.debug\.js$/i, // Office NuGet package is installed under a "1/office" folder
// e.g. /scripts/Office/1/excel-15.debug.js
"match": /^(.*\/office\/1)\/excel-\d+\.debug\.js$/i, // Office NuGet package is installed under a "1/office" folder
"exclude": [["^", 1, "/.*"]], // Exclude that whole folder if the file indicated above is found in it
"types": ["office"] // @types package to fetch instead
}