From 160221c815a1c7b15fa46e69b73c767ae49ef5fd Mon Sep 17 00:00:00 2001 From: Jason Aden Date: Tue, 30 May 2017 10:40:03 -0700 Subject: [PATCH] test(platform-server): fix target of TS outDir for integration test (#17118) --- packages/platform-server/integrationtest/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/platform-server/integrationtest/tsconfig.json b/packages/platform-server/integrationtest/tsconfig.json index 8273ac4dac..c6490ca5d8 100644 --- a/packages/platform-server/integrationtest/tsconfig.json +++ b/packages/platform-server/integrationtest/tsconfig.json @@ -13,7 +13,7 @@ "noImplicitAny": false, "sourceMap": false, "experimentalDecorators": true, - "outDir": "built/src", + "outDir": "built", "declaration": true, "typeRoots": ["node_modules/@types"] },