Sha256: a945954303ee4ff4f64621b8a7433502666e005e2fba7614cf940cd60caa01c8
Contents?: true
Size: 932 Bytes
Versions: 15
Compression:
Stored size: 932 Bytes
Contents
// 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": "anagram", "version": "0.1.0", "sources": [ { "dir" : "src", "subdirs" : true }, { "dir": "__tests__", "type": "dev" } ], "package-specs": { "module": "commonjs", "in-source": true }, "suffix": ".bs.js", "bs-dependencies": [ // 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. ], "bs-dev-dependencies": ["@glennsl/bs-jest"], "warnings": { "error" : "+101" }, "namespace": true, "refmt": 3 }
Version data entries
15 entries across 15 versions & 1 rubygems