forked from JarrodCTaylor/schema-cartographer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshadow-cljs.edn
25 lines (25 loc) · 1.29 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
{: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/js/compiled"
:asset-path "/js/compiled"
:modules {:main {:init-fn client.core/main}}
:compiler-options {:infer-externs :auto
:externs ["externs/go.js"]}
:dev {:closure-defines {goog.DEBUG true
"re_frame.trace.trace_enabled_QMARK_" true}}
:release {:closure-defines {goog.DEBUG false}}
:devtools {:http-root "resources/public"
:preloads [day8.re-frame-10x.preload
shadow.remote.runtime.browser]
:after-load client.core/on-reload
:http-port 9875}}
:test {:target :browser-test
:test-dir "resources/public/js/test"
:ns-regexp "-test$"
:closure-defines {client.config/alert-timeout-ms 10}
:devtools {:http-port 8021
:http-root "resources/public/js/test"}}}}