Socket
Socket
Sign inDemoInstall

alias-help

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

alias-help

alias-help help conversion module resolution configuration from tsconfig.json to webpack.config.*.js


Version published
Weekly downloads
11
decreased by-31.25%
Maintainers
1
Weekly downloads
 
Created
Source

alias-help

alias-help help module resolution config convert from tsconfig.json to webpack.config.*.js.

Usage

const aliasHelp = require('alias-help');

const config = {
  resolve: {
    extensions: ['.ts', '.tsx', '.js', '.jsx', '.json'],
    alias: aliasHelp({ configFile: 'tsconfig.json' }),
    plugins: [
      new tsconfigPathsWebpackPlugin({
        configFile: 'tsconfig.json',
      }),
    ],
    fallback: {
      __dirname: false,
      __filename: false,
      console: false,
      global: false,
      process: false,
    },
  },
}

Caution

Little bit difference between webpack module resolution configuration and typescript module resolution configuration. typescript module resolution configuration can do group by several directory.

  • typescript can do this but webpack don't.
{
  "compilerOptions": {
    "paths": {
      "@avengers/*": [
        "src/iconman/*",
        "src/hulk/*"
      ]
    }
  }
}

Important

Follow webpack official document that can pass string array but only works in webpack5.

So alias-help can do convertion for webpack5. See below.

AS-IS tsconfig.json

{
  "compilerOptions": {
    "paths": {
      "@avengers/*": [
        "src/iconman/*",
        "src/hulk/*"
      ]
    }
  }
}

TO-BE json object for webpack5

{
  '@avengers': [
    'src/iconman',
    'src/hulk'
  ]
}

Convertion example

in tsconfig.json

{
  "@src/*": ["src/*"],
  "@samsubdir/*": ["src/sample-sub-dir/*"],
  "@samdir/*": ["../sample-dir/*"]
}

to webpack.config.*.js

{
  '@src': 'src',
  '@samsubdir': 'src/sample-sub-dir',
  '@samdir': '../sample-dir',
}

Note

You can use extended tsconfig.json file. You have tsconfig.base.json and tsconfig.json file extend that whatever tsconfig extension not a problem. Because alias-help use typescript library for read tsconfig.json.

FAQs

Package last updated on 22 Jun 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc