Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit dc2db8b

Browse files
authored
Merge pull request #90 from alvarosaburido/bugfix/fix-88-module-parse-failed-unexpected-token-
fix(build): fix optional chaining error on builds
2 parents 37a244d + 4276978 commit dc2db8b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/dynamic-form/DynamicForm.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
>
99
<dynamic-input
1010
v-for="control in controls"
11-
:key="control?.name"
11+
:key="control.name"
1212
:control="control"
1313
@changed="valueChange"
1414
/>

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"compilerOptions": {
3-
"target": "esnext",
3+
"target": "es2019",
44
"module": "esnext",
55
"strict": true,
66
"jsx": "preserve",

0 commit comments

Comments
 (0)