From dead5e3dd2630bbb906083a6b3a550f4fddfbe59 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Tue, 5 Dec 2023 20:19:40 +0000 Subject: [PATCH] fix: remove `rootId` environment option --- src/config.ts | 5 ----- tsconfig.json | 7 ++++++- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/config.ts b/src/config.ts index 77b24334a..aa9687d27 100644 --- a/src/config.ts +++ b/src/config.ts @@ -192,11 +192,6 @@ declare module 'vitest' { */ url?: string overrides?: NuxtConfig - /** - * The id of the root div to which the app should be mounted. You should also set `app.rootId` to the same value. - * @default {nuxt-test} - */ - rootId?: string /** * The name of the DOM environment to use. * diff --git a/tsconfig.json b/tsconfig.json index 3c1dc1344..7193ff60a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,7 +4,12 @@ "moduleResolution": "Bundler", }, "exclude": [ - "**/dist/**", + "config.d.ts", + "experimental.d.ts", + "module.d.ts", + "runtime-utils.d.ts", + "vitest-environment.d.ts", + "dist/**", "examples/*", ] }