Skip to content

Instantly share code, notes, and snippets.

@MarvinAmador7
Forked from MoOx/.flowconfig
Created March 15, 2017 15:51
Show Gist options
  • Save MarvinAmador7/987aa080dc2420e7c5aee91f273069e0 to your computer and use it in GitHub Desktop.
Save MarvinAmador7/987aa080dc2420e7c5aee91f273069e0 to your computer and use it in GitHub Desktop.
flow config webpack adjustements to avoid the "Required module not found" for png, css, svg etcc
# ...
[options]
# webpack loaders
module.name_mapper='.*\.css$' -> '<PROJECT_ROOT>/flow/stub/css-modules.js'
module.name_mapper='.*\.\(svg\|png\|jpg\|gif\)$' -> '<PROJECT_ROOT>/flow/stub/url-loader.js'
// @flow
type CSSModule = { [key: string]: string }
const emptyCSSModule: CSSModule = {}
export default emptyCSSModule
// @flow
const s: string = ""
export default s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment