-
Notifications
You must be signed in to change notification settings - Fork 8
/
shadow-cljs.edn
16 lines (16 loc) · 995 Bytes
/
shadow-cljs.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{:deps {:aliases [:dev]}
:builds {:main {:target :browser
:output-dir "target/public/js/main"
:asset-path "/js/main"
:modules {:main {:entries [souenzzo.graph-demo.client]}}
:release {:output-dir "resources/public/js/main"}
:devtools {:preloads [com.fulcrologic.fulcro.inspect.preload]
:after-load souenzzo.graph-demo.client/after-load}
:compiler-options {:source-map true}}
:rn {:target :react-native
:output-dir "target/rn"
:devtools {:autoload true
:after-load souenzzo.graph-demo.client/after-load}
:init-fn souenzzo.graph-demo.client/main
:compiler-options {:reader-features #{:cljsrn}
:source-map true}}}}