From 02826f24e5ce4aadb71e97c3b9f3ddec765f28f8 Mon Sep 17 00:00:00 2001 From: Basarat Ali Syed Date: Sat, 25 Apr 2015 16:20:38 +1000 Subject: [PATCH] tsconfig.json added missing file references and fixed the order This order is significant: ```ts "../compiler/diagnosticInformationMap.generated.ts", "../compiler/commandLineParser.ts", ``` Also not having these extra files referenced caused https://github.com/TypeStrong/atom-typescript/issues/304 Really wish we moved to external modules. --- src/services/tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/services/tsconfig.json b/src/services/tsconfig.json index 296e65965d59b..5dcee789243a7 100644 --- a/src/services/tsconfig.json +++ b/src/services/tsconfig.json @@ -18,11 +18,14 @@ "../compiler/checker.ts", "../compiler/emitter.ts", "../compiler/program.ts", - "../compiler/commandLineParser.ts", + "../compiler/declarationEmitter.ts", "../compiler/diagnosticInformationMap.generated.ts", + "../compiler/commandLineParser.ts", "breakpoints.ts", + "navigateTo.ts", "navigationBar.ts", "outliningElementsCollector.ts", + "patternMatcher.ts", "services.ts", "shims.ts", "signatureHelp.ts",