Package Exports
- @hint/hint-webpack-config
 
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@hint/hint-webpack-config) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
webpack configuration hints set (webpack-config)
webpack-config contains set of hints to check if your webpack
configuration file (webpack.config.js) has the most recommended
configuration.
Why is this important?
If you are building an app or a website using webpack, you need to be sure that your configuration is the best for your needs.
Hints
- webpack-config/config-exists
 - webpack-config/is-installed
 - webpack-config/is-valid
 - webpack-config/module-esnext-typescript
 - webpack-config/modules-false-babel
 - webpack-config/no-devtool-in-prod
 
How to use these hints?
To use it you will have to install it via npm:
npm install @hint/hint-webpack-configNote: You can make npm install it as a devDependency using the
--save-dev parameter, or to install it globally, you can use the
-g parameter. For other options see npm's
documentation.
And then activate it via the .hintrc configuration file:
{
    "connector": {...},
    "formatters": [...],
    "hints": {
        "webpack-config/config-exists": "error",
        "webpack-config/is-installed": "error",
        "webpack-config/is-valid": "error",
        "webpack-config/module-esnext-typescript": "error",
        "webpack-config/no-devtool-in-prod": "error",
        ...
    },
    "parsers": ["webpack-config", "typescript-config"],
    ...
}