-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathshadow-cljs.edn
39 lines (36 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
28
29
30
31
32
33
34
35
36
37
38
39
{:dependencies
[[reagent "1.2.0"]
[re-frame "1.3.0"]
[zprint/zprint "1.2.7"]
[day8.re-frame/tracing "0.6.2"]
[com.yahoo.platform.yui/yuicompressor "2.4.8"
:exclusions [rhino/js]]
[rewrite-clj/rewrite-clj "1.1.47"]
[secretary "1.2.3"]
[binaryage/devtools "1.0.6"]
[metosin/malli "0.11.0"]]
:source-paths ["src" "../../src" "../../gen-src"]
:nrepl {:port 8777}
:builds
{:app
{:target :browser
:output-dir "resources/public/js"
:modules
{:todomvc
{:init-fn todomvc.core/main
:preloads [day8.re-frame-10x.preload.react-18]}}
:dev
{:compiler-options
{:infer-externs false
:closure-defines
{re-frame.trace.trace-enabled? true
day8.re-frame-10x.debug? true
day8.re-frame.tracing.trace-enabled? true
day8.re-frame-10x.init-event? true}
:external-config
{:devtools/config
{:features-to-install
[:formatters :hints]}}}}
:devtools
{:http-root "resources/public"
:http-port 8280}}}}