|
| 1 | +/* eslint-disable @typescript-eslint/ban-ts-comment */ |
| 2 | +/* eslint-disable @typescript-eslint/no-unused-vars */ |
| 3 | +import type { Equal, ExpectTrue } from '@type-challenges/utils' |
| 4 | +import { |
| 5 | + type UserConfig, |
| 6 | + type UserConfigExport, |
| 7 | + type UserConfigFn, |
| 8 | + type UserConfigFnObject, |
| 9 | + type UserConfigFnPromise, |
| 10 | + defineConfig, |
| 11 | +} from '../config' |
| 12 | +import { mergeConfig } from '../publicUtils' |
| 13 | + |
| 14 | +const configObjectDefined = defineConfig({}) |
| 15 | +const configObjectPromiseDefined = defineConfig(Promise.resolve({})) |
| 16 | +const configFnObjectDefined = defineConfig(() => ({})) |
| 17 | +const configFnPromiseDefined = defineConfig(async () => ({})) |
| 18 | +const configFnDefined = defineConfig(() => |
| 19 | + // TypeScript requires both non-promise config and |
| 20 | + // promise config to have at least one property |
| 21 | + Math.random() > 0.5 ? { base: '' } : Promise.resolve({ base: '/' }), |
| 22 | +) |
| 23 | +const configExportDefined = defineConfig({} as UserConfigExport) |
| 24 | + |
| 25 | +export type cases1 = [ |
| 26 | + ExpectTrue<Equal<typeof configObjectDefined, UserConfig>>, |
| 27 | + ExpectTrue<Equal<typeof configObjectPromiseDefined, Promise<UserConfig>>>, |
| 28 | + ExpectTrue<Equal<typeof configFnObjectDefined, UserConfigFnObject>>, |
| 29 | + ExpectTrue<Equal<typeof configFnPromiseDefined, UserConfigFnPromise>>, |
| 30 | + ExpectTrue<Equal<typeof configFnDefined, UserConfigFn>>, |
| 31 | + ExpectTrue<Equal<typeof configExportDefined, UserConfigExport>>, |
| 32 | +] |
| 33 | + |
| 34 | +defineConfig({ |
| 35 | + base: '', |
| 36 | + // @ts-expect-error |
| 37 | + unknownProperty: 1, |
| 38 | +}) |
| 39 | + |
| 40 | +mergeConfig(defineConfig({}), defineConfig({})) |
| 41 | +mergeConfig( |
| 42 | + // @ts-expect-error |
| 43 | + defineConfig(() => ({})), |
| 44 | + defineConfig({}), |
| 45 | +) |
| 46 | + |
| 47 | +export {} |
0 commit comments