forked from metasoarous/oz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
15 lines (15 loc) · 744 Bytes
/
shadow-cljs.edn
File metadata and controls
15 lines (15 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{:deps true
:builds {:lib {:target :browser
:output-dir "resources/oz/public/js"
:modules {:oz {:entries [oz.core]}}}
:devcards {:target :browser
:output-dir "resources/oz/public/js"
:compiler-options {:devcards true}
:modules {:devcards {:init-fn oz.core-devcards/main}}}
:app {:target :browser
:compiler-options {:output-feature-set :es8}
:output-dir "resources/oz/public/js"
:modules {:app {:entries [oz.app]
:init-fn oz.app/init}}
:devtools {:after-load oz.app/init}}}
:dev-http {7125 ["resources/oz/public" "target/public"]}}