forked from hulunote/hulunote-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shadow-cljs.edn
21 lines (19 loc) · 945 Bytes
/
shadow-cljs.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{:source-paths ["src/clj"
"src/cljs"
"src/js"]
:nrepl {:port 3333}
:dependencies []
:builds {:extension {:target :esm
:output-dir "unpacked/out"
:runtime :custom
:modules {:shared {:entries []}
:background {:entries [hulunote-chrome-extension.background]
:depends-on #{:shared}}
:popup {:entries [hulunote-chrome-extension.popup]
:depends-on #{:shared}}
:options {:entries [hulunote-chrome-extension.options]
:depends-on #{:shared}}}}
:core {:target :browser
:output-dir "unpacked/out"
:modules {:content-scripts {:entries [hulunote-chrome-extension.core]}}}
}}