From 80c1dd5b7152a1258670fdaec3ea0cefb114052e Mon Sep 17 00:00:00 2001 From: ryoppippi <1560508+ryoppippi@users.noreply.github.com> Date: Fri, 19 Jul 2024 09:49:01 +0100 Subject: [PATCH] feat(core/options): BREAKING CHANGE cache is disabled by default --- packages/unplugin-typia/src/core/options.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/unplugin-typia/src/core/options.ts b/packages/unplugin-typia/src/core/options.ts index 8a32e151..acd6ba49 100644 --- a/packages/unplugin-typia/src/core/options.ts +++ b/packages/unplugin-typia/src/core/options.ts @@ -68,7 +68,7 @@ export const defaultOptions = ({ exclude: [/node_modules/], enforce: 'pre', typia: { }, - cache: true, + cache: false, log: true, tsconfig: undefined, }) as const satisfies ResolvedOptions;