0.0.1 • Published 7 years ago

fable-compiler-loader v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

Fable Webpack loader

npm

Usage

This is a simple Webpack loader that compiles F# code to JavaScript using Fable.

To use it, first install the package:

$ npm install --save fable-compiler-loader

then configure the loader in your Webpack config:

module.exports = {
  // ...
  module: {
    rules: [
      { test: /\.fsx$/, loader: 'babel-loader!fable-compiler-loader' },
      // or to skip the babel-loader requirement
      // { test : /\.fsx$/, loader: 'fable-compiler-loader?ecma=es5&module=commonjs' }
    ]
  }
}

Configuration

Options passed in the loader query will be passed directly to the Fable compiler, with the exception of outDir and watch. The available options are listed here.

Example

Check out the example directory for a simple Hello World example.