Skip to content

Instantly share code, notes, and snippets.

@fdaciuk
Created April 17, 2021 20:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save fdaciuk/23e1db289539df53d6ecdd5a51b75815 to your computer and use it in GitHub Desktop.
Save fdaciuk/23e1db289539df53d6ecdd5a51b75815 to your computer and use it in GitHub Desktop.
Configuração do ReScript

Configuração do ReScript

bsconfig.json:

{
  "name": "my-rescript-app",
  "reason": { "react-jsx": 3 },
  "sources": [
    {
      "dir": "src",
      "subdirs": true
    }
  ],
  "package-specs": [
    {
      "module": "es6",
      "in-source": true
    }
  ],
  "suffix": ".bs.js",
  "bs-dependencies": ["@rescript/react"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment