forked from babashka/nbb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shadow-cljs.edn
19 lines (19 loc) · 1018 Bytes
/
shadow-cljs.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{:deps true
:builds {:modules {:js-options {:keep-as-import #{"fs" "module" "path"
"react" "react-dom"}}
:compiler-options {:infer-externs :auto}
:target :esm
:runtime :node
:output-dir "out"
:modules
{:nbb_core {:init-fn nbb.core/init}
:nbb_main {:init-fn nbb.main/main
:depends-on #{:nbb_core}}
:nbb_reagent {:init-fn nbb.reagent/init
:depends-on #{:nbb_core}}
:nbb_promesa {:init-fn nbb.promesa/init
:depends-on #{:nbb_core}}
:nbb_pprint {:init-fn nbb.pprint/init
:depends-on #{:nbb_core}}}
:build-hooks [(shadow.cljs.build-report/hook
{:output-to "report.html"})]}}}