Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
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
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.