alias.d.ts — vite Source File
Architecture documentation for alias.d.ts, a typescript file in the vite codebase. 1 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR fbfbbab5_2b7e_7057_f19e_b0dc1e68e067["alias.d.ts"] 693ca867_249b_3e5a_0ce1_8930413b7fcd["rolldown"] fbfbbab5_2b7e_7057_f19e_b0dc1e68e067 --> 693ca867_249b_3e5a_0ce1_8930413b7fcd style fbfbbab5_2b7e_7057_f19e_b0dc1e68e067 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
/**
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 { FunctionPluginHooks } from 'rolldown'
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
* @deprecated Use a custom plugin with resolveId hook and `enforce: 'pre'` instead
*/
customResolver?: ResolverFunction | ResolverObject | null
}
export type MapToFunction<T> = T extends Function ? T : never
export type ResolverFunction = MapToFunction<FunctionPluginHooks['resolveId']>
export interface ResolverObject {
buildStart?: FunctionPluginHooks['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 }
Dependencies
- rolldown
Source
Frequently Asked Questions
What does alias.d.ts do?
alias.d.ts is a source file in the vite codebase, written in typescript.
What does alias.d.ts depend on?
alias.d.ts imports 1 module(s): rolldown.
Where is alias.d.ts in the architecture?
alias.d.ts is located at packages/vite/src/types/alias.d.ts (directory: packages/vite/src/types).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free