roman01la / webpack-closure-compiler

[DEPRECATED] Google Closure Compiler plugin for Webpack
MIT License
464 stars 25 forks source link

Externs? #2

Closed romanoff closed 8 years ago

romanoff commented 8 years ago

Are there any plans to have an ability to use externs (maybe through options)?

roman01la commented 8 years ago

@romanoff Hi. Sorry, I'm not really using it anymore. You can add what you want and send a PR.

HiroAgustin commented 7 years ago

@roman01la what would be the way to configure the externs? https://github.com/facebook/react/issues/9417#issuecomment-315432639

roman01la commented 7 years ago

@HiroAgustin Try to add them as externs option


{
  externs: ["path/to/extern.js"]
}
HiroAgustin commented 7 years ago

Thanks.