-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
shadow-cljs.edn
19 lines (17 loc) · 1.01 KB
/
shadow-cljs.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{:deps {:aliases [:test :dev]}
:nrepl {:port 9000}
:builds {:test {:target :browser-test
:test-dir "resources/public/js/test"
:ns-regexp "-spec$"
:compiler-options {:static-fns false
:external-config {:guardrails {:throw? true}}}
:devtools {:http-port 9002
:http-resource-root "public"
:http-root "resources/public/js/test"}}
:ci-tests {:target :karma
:dev {:compiler-options {:static-fns false
:external-config {:guardrails {:throw? true}}}}
:release {:compiler-options {:static-fns false}}
:js-options {:js-provider :shadow}
:output-to "target/ci.js"
:ns-regexp "-spec$"}}}