typingsInstaller:Remove triple-slash references (#21982)

Replace them with an explicit list of files in tsconfig. I got this list
by adding --listFiles to the jake-generated command.
This commit is contained in:
Nathan Shively-Sanders 2018-02-16 14:00:10 -08:00 committed by GitHub
parent 70e9a5e6dc
commit 7e8dab681a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 9 deletions

View File

@ -1,4 +1,3 @@
/// <reference path="typingsInstaller.ts"/>
/// <reference types="node" />
namespace ts.server.typingsInstaller {

View File

@ -12,6 +12,18 @@
]
},
"files": [
"../../compiler/types.ts",
"../../compiler/performance.ts",
"../../compiler/core.ts",
"../../compiler/sys.ts",
"../../compiler/diagnosticInformationMap.generated.ts",
"../../compiler/utilities.ts",
"../../compiler/scanner.ts",
"../../compiler/parser.ts",
"../../compiler/commandLineParser.ts",
"../../compiler/moduleNameResolver.ts",
"../../services/semver.ts",
"../../services/jsTyping.ts",
"../types.ts",
"../shared.ts",
"typingsInstaller.ts",

View File

@ -1,10 +1,3 @@
/// <reference path="../../compiler/core.ts" />
/// <reference path="../../compiler/moduleNameResolver.ts" />
/// <reference path="../../services/jsTyping.ts"/>
/// <reference path="../../services/semver.ts"/>
/// <reference path="../types.ts"/>
/// <reference path="../shared.ts"/>
namespace ts.server.typingsInstaller {
interface NpmConfig {
devDependencies: MapLike<any>;
@ -413,4 +406,4 @@ namespace ts.server.typingsInstaller {
}
const latestDistTag = "latest";
}
}