-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
29 lines (26 loc) · 1.19 KB
/
shadow-cljs.edn
File metadata and controls
29 lines (26 loc) · 1.19 KB
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
;; shadow-cljs configuration
{:deps {:aliases [:cljs :dev :doc :fdb]}
:nrepl {:init-ns intemporal.dev}
:dev-http {8000 "public"}
:builds {:doc {:target :browser
:output-dir "public/js"
:asset-path "/js"
:compiler-options {:infer-externs true
:optimizations :simple}
:modules {:shared {:entries []}
:main {:init-fn intemporal.doc/init
:depends-on #{:shared}}
:automata {:init-fn intemporal.automata/init
:depends-on #{:shared}}}}
:node {:target :node-test
:output-to "target/tests.js"
:ns-regexp "-test$"
:preloads [intemporal.tests.node-keepalive]
:compiler-options {:source-map "true"}
:autorun true}
:dev {:target :browser
:asset-path "."
:output-dir "target"
:compiler-options {:infer-externs true
:optimizations :none}
:modules {:dev {:entries [intemporal.dev]}}}}}