Skip to content

Instantly share code, notes, and snippets.

@bkonkle
Created January 12, 2017 15:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bkonkle/e32db34477f6398dfcf28ce1ce2b5bf2 to your computer and use it in GitHub Desktop.
Save bkonkle/e32db34477f6398dfcf28ce1ce2b5bf2 to your computer and use it in GitHub Desktop.
Webpack PureScript Config
module: {
// PureScript
loaders: [{
test: /\.purs$/,
loader: 'purs',
exclude: /node_modules/,
query: {
psc: 'psa',
src: ['bower_components/purescript-*/src/**/*.purs', 'src/**/*.purs'],
warnings: false,
},
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment