forked from athensresearch/athens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshadow-cljs.edn
21 lines (21 loc) · 1.08 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
{:lein true
:nrepl {:port 8777
;:init-ns athens.core
}
:builds {:app {:target :browser
:output-dir "resources/public/js/compiled"
:asset-path "/js/compiled"
:modules {:app {:init-fn athens.core/init
:preloads [devtools.preload
day8.re-frame-10x.preload]}}
:dev {:compiler-options
{:closure-defines {re-frame.trace.trace-enabled? true
day8.re-frame.tracing.trace-enabled? true}}}
:devtools {:http-root "resources/public"
:http-port 3000
:repl-init-ns athens.core
;; :repl-pprint true
}}
:karma-test {:target :karma
:ns-regexp "-test$"
:output-to "target/karma-test.js"}}}