yuzai / alias-jsconfig-webpack-plugin

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

webpack plugin

convert alias to jsconfig.json or tsconfig.json

how to use

npm i --save-dev alias-jsconfig-webpack-plugin

in webpack.config.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.

About

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


Languages

Language:JavaScript 100.0%