bs-websocket
Version:
30 lines (29 loc) • 714 B
JSON
// 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
// BuckleScript comes with its own parser for bsconfig.json, which is normal JSON, with the extra support of comments and trailing commas.
{
"name": "bs-websockets",
"version": "0.1.0",
"sources": [
{
"dir" : "src",
"subdirs" : true
},
{
"dir": "example",
"subdirs": true
}
],
"package-specs": {
"module": "commonjs",
"in-source": false
},
"suffix": ".bs.js",
"bs-dependencies": [
"bs-webapi"
],
"warnings": {
"error" : "+101"
},
"namespace": true,
"refmt": 3
}