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

View File

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