1.0.2 • Published 4 years ago

alias-jsconfig-webpack-plugin v1.0.2

Weekly downloads
4
License
ISC
Repository
github
Last release
4 years ago

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.

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago