
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
alias-help help conversion module resolution configuration from tsconfig.json to webpack.config.*.js
alias-help help module resolution config convert from tsconfig.json to webpack.config.*.js.
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,
},
},
}
Little bit difference between webpack module resolution configuration and typescript module resolution configuration. typescript module resolution configuration can do group by several directory.
{
"compilerOptions": {
"paths": {
"@avengers/*": [
"src/iconman/*",
"src/hulk/*"
]
}
}
}
Follow webpack official document that can pass string array but only works in webpack5.
So alias-help can do convertion for webpack5. See below.
{
"compilerOptions": {
"paths": {
"@avengers/*": [
"src/iconman/*",
"src/hulk/*"
]
}
}
}
{
'@avengers': [
'src/iconman',
'src/hulk'
]
}
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',
}
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
alias-help help conversion module resolution configuration from tsconfig.json to webpack.config.*.js
The npm package alias-help receives a total of 14 weekly downloads. As such, alias-help popularity was classified as not popular.
We found that alias-help demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.

Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.

Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.