From f7851da7f702fdece84180abd7ed3a5b5e31233a Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Tue, 12 Oct 2021 18:44:20 +0000 Subject: [PATCH] fix: emitDeclarationOnly in tsconfig.types.json --- .../amazon/smithy/typescript/codegen/tsconfig.types.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/smithy-typescript-codegen/src/main/resources/software/amazon/smithy/typescript/codegen/tsconfig.types.json b/smithy-typescript-codegen/src/main/resources/software/amazon/smithy/typescript/codegen/tsconfig.types.json index b7018298d8a..4c3dfa7b3d2 100644 --- a/smithy-typescript-codegen/src/main/resources/software/amazon/smithy/typescript/codegen/tsconfig.types.json +++ b/smithy-typescript-codegen/src/main/resources/software/amazon/smithy/typescript/codegen/tsconfig.types.json @@ -3,7 +3,8 @@ "compilerOptions": { "removeComments": false, "declaration": true, - "declarationDir": "dist-types" + "declarationDir": "dist-types", + "emitDeclarationOnly": true }, "exclude": ["test/**/*", "dist-types/**/*"] }