-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathshadow-cljs.edn
27 lines (27 loc) · 1.14 KB
/
shadow-cljs.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
;
;
{:deps true
:source-paths ["src" "test"]
:dev-http {8080 "target/"}
:nrepl {:port 9001
:middleware []}
:builds {:app {:target :browser
:js-options {:js-provider :shadow}
:output-dir "resources/public/assets/js/compiled"
:asset-path "/js/compiled"
:modules {:main {:init-fn clojurescript.flow-monitor-ui.core/main}}
:compiler-options {:infer-externs :auto}
:dev {:closure-defines {goog.DEBUG true}}
:release {:closure-defines {goog.DEBUG false}}
:devtools {:http-root "resources/public"
:preloads []
:after-load clojurescript.flow-monitor-ui.core/on-reload
:http-port 9876}}
:test {:target :browser-test
:test-dir "resources/public/assets/js/test"
:ns-regexp "-test$"
:closure-defines {flow-monitor-ui/alert-timeout-ms 10}
:devtools {:http-port 8021
:http-root "resources/public/assets/js/test"}}}}
;
;