We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1de9b3e commit f0a3754Copy full SHA for f0a3754
packages/vite/src/node/__tests_dts__/typeOptions.ts
@@ -0,0 +1,21 @@
1
+// This file tests `ViteTypeOptions` in `packages/vite/types/importMeta.d.ts`
2
+import type { ExpectFalse, ExpectTrue } from '@type-challenges/utils'
3
+
4
+// eslint-disable-next-line @typescript-eslint/no-empty-object-type
5
+interface TypeOptions1 {}
6
+interface TypeOptions2 {
7
+ strictImportMetaEnv: unknown
8
+}
9
+interface TypeOptions3 {
10
+ unknownKey: unknown
11
12
13
+type IsEnabled<Opts, Key extends string> = Key extends keyof Opts ? true : false
14
15
+export type cases = [
16
+ ExpectFalse<IsEnabled<TypeOptions1, 'strictImportMetaEnv'>>,
17
+ ExpectTrue<IsEnabled<TypeOptions2, 'strictImportMetaEnv'>>,
18
+ ExpectFalse<IsEnabled<TypeOptions3, 'strictImportMetaEnv'>>,
19
+]
20
21
+export {}
0 commit comments