-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
21 lines (20 loc) · 726 Bytes
/
shadow-cljs.edn
File metadata and controls
21 lines (20 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{:deps true
:builds
{:extension {:target :node-library
:js-options {:js-provider :shadow
:keep-native-requires true
:keep-as-require #{"vscode"}}
:compiler-options {:infer-externs :auto}
:output-dir "out/js"
:output-to "out/extension.js"
:exports {:activate calva-power-tools.extension/activate
:deactivate calva-power-tools.extension/deactivate}}
:test-watch
{:target :node-test
:output-to "out/extension-tests.js"
:ns-regexp "-test$"
:autorun true}
:test-compile
{:target :node-test
:output-to "out/extension-tests.js"
:ns-regexp "-test$"}}}