From f84ba5a0c3b0b0209f2015d31e8149fea22ee52b Mon Sep 17 00:00:00 2001 From: s1gr1d Date: Tue, 8 Oct 2024 14:25:24 +0200 Subject: [PATCH] fix(nuxt): Create declaration files for Nuxt module --- packages/nuxt/src/tsconfig.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 packages/nuxt/src/tsconfig.json diff --git a/packages/nuxt/src/tsconfig.json b/packages/nuxt/src/tsconfig.json new file mode 100644 index 000000000000..1a34cc4af0a5 --- /dev/null +++ b/packages/nuxt/src/tsconfig.json @@ -0,0 +1,8 @@ +{ + "extends": "../tsconfig.json", + + "compilerOptions": { + // nuxt-module-build uses the closest `tsconfig.json` to build the Nuxt module declarations + "declaration": true, + } +}