├── .gitignore ├── README.md ├── bsconfig.json ├── package.json └── src ├── Demo.bs.js └── Demo.res /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /node_modules/ 3 | /lib/ 4 | .bsb.lock 5 | .merlin 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-project-template/HEAD/README.md -------------------------------------------------------------------------------- /bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-project-template/HEAD/bsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-project-template/HEAD/package.json -------------------------------------------------------------------------------- /src/Demo.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-project-template/HEAD/src/Demo.bs.js -------------------------------------------------------------------------------- /src/Demo.res: -------------------------------------------------------------------------------- 1 | Console.log("Hello, World!") 2 | --------------------------------------------------------------------------------