-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor(types): bundle client types #9966
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
7d899a9
refactor(types): move dep types to src/dep-types
sapphi-red e02278f
refactor(types): add facade files for backward compatibility
sapphi-red 699efbb
refactor(types): move types to src/types
sapphi-red 22bad14
refactor(types): bundle client types
sapphi-red 10ca427
refactor(types): add facade files for backward compatibility
sapphi-red 8e2e96d
refactor(types): reorder export in src/node/index.ts
sapphi-red b8f6194
docs: improve custom event typing
sapphi-red 5ebf049
fix(types): fix for `moduleResolution: "nodenext"`
sapphi-red b67e766
chore: merge branch 'main' into refactor/types
sapphi-red File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
dist | ||
playground-temp | ||
temp | ||
|
||
packages/vite/client/types.d.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
*.local | ||
*.log | ||
/.vscode/ | ||
/packages/vite/client/types.d.ts | ||
/packages/vite/LICENSE | ||
dist | ||
dist-ssr | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{ | ||
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", | ||
|
||
"projectFolder": "./src/client", | ||
|
||
"mainEntryPointFilePath": "./src/client-types.d.ts", | ||
|
||
"dtsRollup": { | ||
"enabled": true, | ||
"untrimmedFilePath": "", | ||
"publicTrimmedFilePath": "./client/types.d.ts" | ||
}, | ||
|
||
"apiReport": { | ||
"enabled": false | ||
}, | ||
|
||
"docModel": { | ||
"enabled": false | ||
}, | ||
|
||
"tsdocMetadata": { | ||
"enabled": false | ||
}, | ||
|
||
"messages": { | ||
"compilerMessageReporting": { | ||
"default": { | ||
"logLevel": "warning" | ||
} | ||
}, | ||
|
||
"extractorMessageReporting": { | ||
"default": { | ||
"logLevel": "warning", | ||
"addToApiReportFile": true | ||
}, | ||
|
||
"ae-missing-release-tag": { | ||
"logLevel": "none" | ||
} | ||
}, | ||
|
||
"tsdocMessageReporting": { | ||
"default": { | ||
"logLevel": "warning" | ||
}, | ||
|
||
"tsdoc-undefined-tag": { | ||
"logLevel": "none" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import type { | ||
ImportMeta as ViteImportMeta, | ||
ImportMetaEnv as ViteImportMetaEnv | ||
// eslint-disable-next-line node/no-missing-import -- use .js for `moduleResolution: "nodenext"` | ||
} from './client/types.js' | ||
|
||
declare global { | ||
interface ImportMeta extends ViteImportMeta {} | ||
interface ImportMetaEnv extends ViteImportMetaEnv {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
export type { | ||
CustomEventMap, | ||
InferCustomEventPayload | ||
} from './types/customEvent' | ||
export type { | ||
HMRPayload, | ||
ConnectedPayload, | ||
UpdatePayload, | ||
Update, | ||
PrunePayload, | ||
FullReloadPayload, | ||
CustomPayload, | ||
ErrorPayload | ||
} from './types/hmrPayload' | ||
export type { ModuleNamespace, ViteHotContext } from './types/hot' | ||
export type { | ||
ImportGlobOptions, | ||
GeneralImportGlobOptions, | ||
KnownAsTypeMap, | ||
ImportGlobFunction, | ||
ImportGlobEagerFunction | ||
} from './types/importGlob' | ||
export type { ImportMetaEnv, ImportMeta } from './types/importMeta' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/** | ||
Types from https://github.com/rollup/plugins/blob/master/packages/alias/types/index.d.ts | ||
Inlined because the plugin is bundled. | ||
|
||
https://github.com/rollup/plugins/blob/master/LICENSE | ||
|
||
The MIT License (MIT) | ||
|
||
Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors) | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
*/ | ||
|
||
import type { PluginHooks } from 'rollup' | ||
|
||
export interface Alias { | ||
find: string | RegExp | ||
replacement: string | ||
/** | ||
* Instructs the plugin to use an alternative resolving algorithm, | ||
* rather than the Rollup's resolver. | ||
* @default null | ||
*/ | ||
customResolver?: ResolverFunction | ResolverObject | null | ||
} | ||
|
||
export type ResolverFunction = PluginHooks['resolveId'] | ||
|
||
export interface ResolverObject { | ||
buildStart?: PluginHooks['buildStart'] | ||
resolveId: ResolverFunction | ||
} | ||
|
||
/** | ||
* Specifies an `Object`, or an `Array` of `Object`, | ||
* which defines aliases used to replace values in `import` or `require` statements. | ||
* With either format, the order of the entries is important, | ||
* in that the first defined rules are applied first. | ||
* | ||
* This is passed to \@rollup/plugin-alias as the "entries" field | ||
* https://github.com/rollup/plugins/tree/master/packages/alias#entries | ||
*/ | ||
export type AliasOptions = readonly Alias[] | { [find: string]: string } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export type AnymatchFn = (testString: string) => boolean | ||
export type AnymatchPattern = string | RegExp | AnymatchFn | ||
type AnymatchMatcher = AnymatchPattern | AnymatchPattern[] | ||
|
||
export { AnymatchMatcher as Matcher } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When
vite/client
orvite/import-meta
is used from a file usingmoduleResolution: "nodenext"
, this import needs to bevite/client/types
orvite/client/types.js
... (vitepress usesmoduleResolution: "nodenext"
)