UNPKG

@rogrp6/fork__fork__alias-jsconfig-webpack-plugin

Version:

webpack plugin: auto convert resolve.alias to jsconfig.json or tsconfig.json

36 lines (26 loc) 807 B
## webpack plugin convert alias to jsconfig.json or tsconfig.json ## how to use ```js npm i --save-dev alias-jsconfig-webpack-plugin ``` in webpack.config.js: ```js const Alias = require('alias-jsconfig-webpack-plugin'); // ...plugins export default { // your other config // ... plugins: [ // your other plugins new Alias({ language: 'js', // or 'ts' jsx: true, // default to true, indentation: 4, // default to 4, the indentation of jsconfig.json file }), ] } ``` ## what it can do when there is no jsconfig/tsconfig.json file, this plugin with generater one with the alias in webpack will be written into paths for vscode to find it. if there had this file, it will rewrite the paths with the alias read from webpack.