-
Notifications
You must be signed in to change notification settings - Fork 1
/
shadow-cljs.edn
18 lines (17 loc) · 1.04 KB
/
shadow-cljs.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{:deps {:aliases [:frontend :test]}
:dev-http {9000 {:root "resources/dk/cst/glossematics/public"
:handler dk.cst.glossematics.backend.index/shadow-handler}}
:nrepl {:port 9900}
:builds {:app {:target :browser
:output-dir "resources/dk/cst/glossematics/public/js/compiled"
:asset-path "/js/compiled"
:compiler-options {:data-readers true
:infer-externs :auto}
:module-hash-names true
:modules {:main {:init-fn dk.cst.glossematics.frontend/init!}}
;; https://shadow-cljs.github.io/docs/UsersGuide.html#build-report
:build-hooks [(shadow.cljs.build-report/hook)]}
:test {:target :browser-test
:test-dir "resources/dk/cst/glossematics/public/js/test"
:devtools {:http-port 9100
:http-root "resources/dk/cst/glossematics/public/js/test"}}}}