-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshadow-cljs.edn
21 lines (19 loc) · 1.03 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
;; shadow-cljs configuration
{:source-paths ["src"]
:dependencies [[cider/cider-nrepl "0.25.5"]
[binaryage/devtools "1.0.2"]
[devcards "0.2.7"]
[com.taoensso/timbre "5.1.0"]]
:builds {:dev {:target :browser
:asset-path "js"
:output-dir "resources/public/js"
:modules {:main {:entries [roam-parser.dev.core]}}
:build-options {:ns-aliases {devcards-marked cljsjs.marked
devcards-syntax-highlighter cljsjs.highlight}}
:compiler-options {:infer-externs :auto
:output-feature-set :es-next
:devcards true}
:devtools {:http-port 8021
:http-root "resources/public"
:preloads [shadow.remote.runtime.cljs.browser
roam-parser.dev.preload]}}}}