-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
29 lines (28 loc) · 1.19 KB
/
shadow-cljs.edn
File metadata and controls
29 lines (28 loc) · 1.19 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
{: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
:externs ["externs/mcp_server.js"
"datascript/externs.js"]}
:output-dir "out/js"
:output-to "out/extension.js"
:exports {:activate calva-backseat-driver.extension/activate
:deactivate calva-backseat-driver.extension/deactivate}}
:stdio-wrapper {:target :node-script
:main calva-backseat-driver.stdio.wrapper/main
:output-to "dist/calva-mcp-server.js"}
:test-watch
{:target :node-test
:output-to "out/extension-tests.js"
:ns-regexp "-test$"
:autorun true}
:test-compile
{:target :node-test
:compiler-options {:infer-externs :auto
:externs ["externs/mcp_server.js"
"datascript/externs.js"]}
:output-to "out/extension-tests.js"
:ns-regexp "-test$"}}}