-
Notifications
You must be signed in to change notification settings - Fork 10
/
shadow-cljs.edn
28 lines (24 loc) · 1.5 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
{:deps {:aliases [:dev]}
:http {:port 9610}
:builds {:workspaces {:target nubank.workspaces.shadow-cljs.target
:ns-regexp "-(test|cards)$"
:output-dir "public/js/workspaces"
:asset-path "/js/workspaces"
:compiler-options {:externs ["datascript/externs.js"]}
:preloads [] ; optional, list namespaces to be pre loaded
:devtools {:http-root "public"
:http-port 8084
:http-resource-root "."
:devtools-url "http://localhost:9610"}}
:chrome {:target :chrome-extension
:compiler-options {:closure-output-charset "US-ASCII"
:externs ["datascript/externs.js"]}
:extension-dir "shells/chrome"
:devtools {:devtools-url "http://localhost:9610"}}
:chrome-devtool {:target :browser
:output-dir "shells/chrome/js/devtool"
:asset-path "js/devtool"
:compiler-options {:closure-output-charset "US-ASCII"
:externs ["datascript/externs.js"]}
:devtools {:devtools-url "http://localhost:9610"}
:modules {:main {:entries [datalog-console.chrome.extension.devtool.main]}}}}}