Skip to content

Commit dead5e3

Browse files
committedDec 5, 2023
fix: remove rootId environment option
1 parent c9699ad commit dead5e3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

Diff for: ‎src/config.ts

-5
Original file line numberDiff line numberDiff line change
@@ -192,11 +192,6 @@ declare module 'vitest' {
192192
*/
193193
url?: string
194194
overrides?: NuxtConfig
195-
/**
196-
* The id of the root div to which the app should be mounted. You should also set `app.rootId` to the same value.
197-
* @default {nuxt-test}
198-
*/
199-
rootId?: string
200195
/**
201196
* The name of the DOM environment to use.
202197
*

Diff for: ‎tsconfig.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@
44
"moduleResolution": "Bundler",
55
},
66
"exclude": [
7-
"**/dist/**",
7+
"config.d.ts",
8+
"experimental.d.ts",
9+
"module.d.ts",
10+
"runtime-utils.d.ts",
11+
"vitest-environment.d.ts",
12+
"dist/**",
813
"examples/*",
914
]
1015
}

0 commit comments

Comments
 (0)
Please sign in to comment.