Skip to content

Commit 7e9b9c5

Browse files
committed
fix(typescript) missing file references. closes #304
the tsconfig.json file used by the TypeScript team has these files missing. Send a PR.
1 parent 485c83b commit 7e9b9c5

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

dist/typescript/makeTypeScriptGlobal.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,14 @@ var servicesFiles = [
99
"../compiler/checker.ts",
1010
"../compiler/emitter.ts",
1111
"../compiler/program.ts",
12+
"../compiler/declarationEmitter.ts",
1213
"../compiler/diagnosticInformationMap.generated.ts",
1314
"../compiler/commandLineParser.ts",
1415
"breakpoints.ts",
16+
"navigateTo.ts",
1517
"navigationBar.ts",
1618
"outliningElementsCollector.ts",
19+
"patternMatcher.ts",
1720
"services.ts",
1821
"shims.ts",
1922
"signatureHelp.ts",

lib/typescript/makeTypeScriptGlobal.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// Put the whole of `ts` namespace into the global `ts` variable
22
// IMPORTANT!!!!!!!!!!!! `diagnosticInformationMap` needs to be before `commandLineParser`
3+
// Also a few files were missing that I added manually below
34
var servicesFiles = [
45
"../compiler/core.ts",
56
"../compiler/sys.ts",
@@ -11,11 +12,14 @@ var servicesFiles = [
1112
"../compiler/checker.ts",
1213
"../compiler/emitter.ts",
1314
"../compiler/program.ts",
15+
"../compiler/declarationEmitter.ts",
1416
"../compiler/diagnosticInformationMap.generated.ts",
1517
"../compiler/commandLineParser.ts",
1618
"breakpoints.ts",
19+
"navigateTo.ts",
1720
"navigationBar.ts",
1821
"outliningElementsCollector.ts",
22+
"patternMatcher.ts",
1923
"services.ts",
2024
"shims.ts",
2125
"signatureHelp.ts",

0 commit comments

Comments
 (0)