test: fix component tests (#21725)
TypeScript in v5 emits a warning and this ends up in exit code 1. See https://github.com/vuejs/tsconfig/issues/6 for more information. This CL will make TypeScript still end up in exit code 0 even tho these warnings are emitted until they fixed it upstream and released a new version of their config.
This commit is contained in:
parent
771abe15fb
commit
a68201b491
|
|
@ -4,6 +4,7 @@
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"composite": true,
|
"composite": true,
|
||||||
"lib": [],
|
"lib": [],
|
||||||
"types": ["node"]
|
"types": ["node"],
|
||||||
|
"ignoreDeprecations": "5.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue