From 6ab85dfc53e1a631deaa8d14f85373120a00db72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Sat, 15 Jun 2024 11:56:34 +0200 Subject: [PATCH] fix: Make CI pass MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- src/modules/main/partials/ColumnFormComponent.vue | 2 +- tsconfig.json | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/modules/main/partials/ColumnFormComponent.vue b/src/modules/main/partials/ColumnFormComponent.vue index ef6a22538..752b6b652 100644 --- a/src/modules/main/partials/ColumnFormComponent.vue +++ b/src/modules/main/partials/ColumnFormComponent.vue @@ -62,7 +62,7 @@ export default { }, }, watch: { - value_data(val) { + value_data() { this.$emit('update:value', this.value_data) }, value() { diff --git a/tsconfig.json b/tsconfig.json index ff136a446..cc0275230 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,5 +19,11 @@ }, "vueCompilerOptions": { "target": 2.7, + }, + "ts-node": { + "compilerOptions": { + "module": "ESNext", + "moduleResolution": "Node" + } } }