-
Notifications
You must be signed in to change notification settings - Fork 0
/
shadow-cljs.edn
35 lines (33 loc) · 1.17 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
28
29
30
31
32
33
34
35
{:source-paths
["src", "test"]
:dependencies
[[reagent "1.1.1"]
[re-frame "1.3.0"]
[day8.re-frame/tracing "0.6.2"]
[day8.re-frame/re-frame-10x "1.5.0"]
[ch.qos.logback/logback-core "1.0.13"]
[ch.qos.logback/logback-classic "1.0.13"]
[metosin/spec-tools "0.10.5"]
[metosin/reitit "0.5.18"]
[fipp "0.6.26"]]
:builds
{:app {:target :browser
:output-dir "resources/public/js"
:asset-path "/js"
:modules {:app {:init-fn todomvc.frontend.app/init}}
:devtools {:repl-init-ns todomvc.frontend.app
:repl-pprint true
:preloads [day8.re-frame-10x.preload]}
:dev {:compiler-options
{:closure-defines
{re-frame.trace.trace-enabled? true
day8.re-frame.tracing.trace-enabled? true
"goog.DEBUG" true
:optimizations :none}}}
:release {:build-options
{:ns-aliases
{day8.re-frame.tracing day8.re-frame.tracing-stubs}}}}
:test {:target :browser-test
:test-dir "resources/public/js/test"
:devtools {:http-port 8022
:http-root "resources/public/js/test"}}}}