-
Notifications
You must be signed in to change notification settings - Fork 1
/
shadow-cljs.edn
executable file
·22 lines (20 loc) · 1.36 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
{:deps true
:dev-http {8280 "resources/public"}
:builds {:react {:target :browser
:output-dir "resources/public/js/compiled"
:asset-path "/js/compiled"
:compiler-options {:externs ["externs/google_visualization_api.js"]}
:modules {:app {:init-fn wkok.buy2let.ui.react.app/init
:entries [wkok.buy2let.backend.demo]
:preloads [day8.re-frame-10x.preload]}}
:dev {:compiler-options {:closure-defines {re-frame.trace.trace-enabled? true
day8.re-frame.tracing.trace-enabled? true}}}}
:native {:target :react-native
:init-fn wkok.buy2let.ui.native.app/init
:output-dir "app"
:compiler-options {:infer-externs :auto}
:devtools {:autoload true
:preloads [shadow.expo.keep-awake
wkok.buy2let.backend.demo]}}
:ci {:target :karma
:output-to "karma/ci.js"}}}