-
Notifications
You must be signed in to change notification settings - Fork 1
/
shadow-cljs.edn
28 lines (25 loc) · 1.16 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
22
23
24
25
26
27
28
;; shadow-cljs configuration
{:deps {:aliases [:shadow-cljs]}
:builds
{:node-test-simple {:target :node-test
:output-to "target/node-test-simple/node-tests.js"
:ns-regexp ".*-test"
:autorun false
:devtools {:preloads []}
:compiler-options {:optimizations :simple
:source-map true}
:closure-defines {}}
:node-test-advanced {:target :node-test
:output-to "target/node-test-advanced/node-tests.js"
:ns-regexp ".*-test"
:autorun false
:devtools {:preloads []}
:compiler-options {:optimizations :advanced
:source-map true}
:closure-defines {}}
:node-test-autorun {:target :node-test
:output-to "target/node-test-autorun/node-tests.js"
:ns-regexp ".*-test"
:autorun true
:compiler-options {}
:closure-defines {}}}}