rsnext/examples/with-reasonml/bsconfig.json
Anthony Mittaz 7f471a4463 Tweak ReasonML example (#7254)
* Lock bs-platform to 5.0.3 (avoiding issues with reason language server)

https://github.com/jaredly/reason-language-server/issues/275

* Reformat code

* Ask bucklescript to use es6 instead of commonjs

* Rework getInitialProps (can now use a promise)

* Ignore .bsb.lock
2019-05-05 13:02:27 +02:00

26 lines
441 B
JSON

{
"name": "with-reasonml",
"sources": [
{
"dir": "components",
"subdirs": true
},
{
"dir": "pages",
"subdirs": true
},
{
"dir": "bindings",
"subdirs": true
}
],
"bs-dependencies": ["reason-react"],
"reason": { "react-jsx": 3 },
"package-specs": {
"module": "es6",
"in-source": true
},
"suffix": ".bs.js",
"bsc-flags": ["-bs-super-errors"],
"refmt": 3
}