From 3375563e64ac8b2ea4dd12c75af6b1217b04787d Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Mon, 31 Jul 2023 17:15:53 +0100 Subject: [PATCH] fix: augment vueCompilerOptions in `pkg-types` --- vue-compiler-options.d.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 vue-compiler-options.d.ts diff --git a/vue-compiler-options.d.ts b/vue-compiler-options.d.ts new file mode 100644 index 00000000..24d02687 --- /dev/null +++ b/vue-compiler-options.d.ts @@ -0,0 +1,8 @@ +declare module 'pkg-types' { + interface TSConfig { + // TODO: augment in nuxt + vueCompilerOptions: any + } +} + +export {}