You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! This project allows you to quickly get started with Reason and BuckleScript. If you wanted a more sophisticated version, try the `react` template (`bsb -theme react -init .`).
4
+
5
+
# Build
6
+
```
7
+
npm run build
8
+
```
9
+
10
+
# Build + Watch
11
+
12
+
```
13
+
npm run watch
14
+
```
15
+
16
+
17
+
# Editor
18
+
If you use `vscode`, Press `Windows + Shift + B` it will build automatically
// This is the configuration file used by BuckleScript's build system bsb. Its documentation lives here: http://bucklescript.github.io/bucklescript/docson/#build-schema.json
2
+
// BuckleScript comes with its own parser for bsconfig.json, which is normal JSON, with the extra support of comments and trailing commas.
3
+
{
4
+
"name": "rerror",
5
+
"version": "0.1.0",
6
+
"bsc-flags": ["-bs-super-errors"],
7
+
"sources": [
8
+
"src"
9
+
],
10
+
"bs-dependencies" : [
11
+
// add your dependencies here. You'd usually install them normally through `npm install my-dependency`. If my-dependency has a bsconfig.json too, then everything will work seamlessly.
0 commit comments