forked from metabase/metabase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
42 lines (39 loc) · 1.43 KB
/
shadow-cljs.edn
File metadata and controls
42 lines (39 loc) · 1.43 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
;; shadow-cljs configuration
{:deps {:aliases [:cljs]}
:nrepl
{:middleware
[cider.nrepl/cider-middleware
cider.piggieback/wrap-cljs-repl
refactor-nrepl.middleware/wrap-refactor]
:port 50655}
:builds
{:app
{:target :npm-module
:output-dir "target/cljs_release/"
:dev {:output-dir "target/cljs_dev/"
:compiler-options {:reader-features #{:cljs-dev}}}
:compiler-options {:reader-features #{:cljs-release}
:source-map true
:warnings {:fn-deprecated false}}
:closure-defines {goog.debug.LOGGING_ENABLED true}
:entries [metabase.dashboards.constants
metabase.lib.column-group
metabase.lib.js
metabase.lib.limit
metabase.lib.types.isa
metabase.parameters.shared
metabase.pivot.core
metabase.pivot.js
metabase.types.core
metabase.util.currency
metabase.util.devtools
metabase.util.formatting.constants
metabase.util.formatting.date
metabase.util.time
metabase.xrays.domain-entities.queries.util]}
:test
{:target :node-test
:output-to "target/node-tests.js"
:ns-regexp "-test$"
:compiler-options {:reader-features #{:cljs-test}
:warnings {:fn-deprecated false}}}}}