Skip to content

LoaderOptionsPlugin #346

Open
Open
@dland512

Description

@dland512

Great webpack starter. Thanks for putting it together. Quick question for you. I see that it's using LoaderOptionsPlugin. I'm still a bit new to Webpack so there could be a good reason for it but I was wondering why we are going that route rather than just putting the config options in the loader declarations themselves. For example, for tslint-loader, doing this:

{
    test: /\.ts$/,
    loader: 'tslint-loader',
    options: {
        emitErrors: true,
        failOnHint: true
    }
}

Seems to work just as well as using the plugin:

new webpack.LoaderOptionsPlugin({
    options: {
        tslint: {
            emitErrors: true,
            failOnHint: true
       }
}

Again, this could very well be based on my not understanding something correctly, so I'm more just asking for the sake of learning.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions