UNPKG

alias-to-config-plugin

Version:

Automatically generate jsconfig.json/tsconfig.json path mappings from Webpack/Vite alias configurations

12 lines 450 B
import type { WebpackCompiler } from "./types"; import ConfigGenerator from "./configGenerator.js"; /** * Webpack 插件类:将Webpack别名转换为 jsconfig/tsconfig 路径配置 */ declare class WebpackAliasToConfigPlugin extends ConfigGenerator { apply(compiler: WebpackCompiler): void; } export type * from "./types"; export default WebpackAliasToConfigPlugin; export { WebpackAliasToConfigPlugin }; //# sourceMappingURL=webpack.d.ts.map