forked from fulcrologic/fulcro-rad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshadow-cljs.edn
19 lines (17 loc) · 1.05 KB
/
shadow-cljs.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{:deps {:aliases [:dev :tests]}
:nrepl {:port 9000}
:jvm-opts ["-Xmx2G"]
:builds {:test {:target :browser-test
:test-dir "resources/public/js/test"
:ns-regexp "-spec$"
:compiler-options {:static-fns false
:external-config {:guardrails {:throw? true :emit-spec? true}}}
:devtools {:http-port 8081
:http-resource-root "public"
:http-root "resources/public/js/test"}}
:ci-tests {:target :karma
:js-options {:js-provider :shadow}
:compiler-options {:static-fns false ; required for mocking to work
:external-config {:guardrails {:throw? true :emit-spec? true}}}
:output-to "target/ci.js"
:ns-regexp "-spec$"}}}