From e88207d1d325ce252ff57352f2bf06192369815a Mon Sep 17 00:00:00 2001 From: Ege Korkan Date: Mon, 14 Oct 2024 23:08:18 +0200 Subject: [PATCH] fix: exclude dist from targets to avoid overwrite warning --- node/aas-aid/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/aas-aid/tsconfig.json b/node/aas-aid/tsconfig.json index 4beac51..e8c244f 100644 --- a/node/aas-aid/tsconfig.json +++ b/node/aas-aid/tsconfig.json @@ -23,5 +23,5 @@ "strictNullChecks": true }, "include": ["*.ts", "**/*.ts", "../src/**/*.ts", "**/AIDSchema.json"], - "exclude": [] + "exclude": ["./dist/**/*"] }