We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d2bdcc commit aef33a8Copy full SHA for aef33a8
smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/CodegenVisitor.java
@@ -70,8 +70,9 @@ class CodegenVisitor extends ShapeVisitor.Default<Void> {
70
*/
71
private static final Map<String, String> STATIC_FILE_COPIES = MapUtils.of(
72
"jest.config.js", "jest.config.js",
73
+ "tsconfig.json", "tsconfig.json",
74
"tsconfig.es.json", "tsconfig.es.json",
- "tsconfig.json", "tsconfig.json"
75
+ "tsconfig.types.json", "tsconfig.types.json"
76
);
77
private static final ShapeId VALIDATION_EXCEPTION_SHAPE =
78
ShapeId.fromParts("smithy.framework", "ValidationException");
0 commit comments