fix: Force type safety in design system (no-changelog) (#9586)

Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
Mutasem Aldmour 2024-06-03 12:50:41 +02:00 committed by GitHub
parent 05dba623eb
commit 5686e2222c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -30,7 +30,7 @@ export const vitestConfig = defineVitestConfig({
}) as UserConfig; }) as UserConfig;
const plugins = [vue()]; const plugins = [vue()];
if (process.env.ENABLE_TYPE_CHECKING === 'true') { if (!process.env.VITEST) {
plugins.push(checker({ vueTsc: true })); plugins.push(checker({ vueTsc: true }));
} }