-
-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
58 lines (54 loc) · 2.52 KB
/
Copy pathshadow-cljs.edn
File metadata and controls
58 lines (54 loc) · 2.52 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{:deps {:aliases [:cljs :test]}
:src-paths ["src" "test"]
:dev-http {8022 "target/browser-integration-test"}
:builds {:repl
{:target :node-script
:output-to "target/out/repl.js"
:main shadow.cljs.devtools.cli
:compiler-options {:infer-externs true
:warnings-as-errors false
:warnings {:fn-deprecated false
:protocol-multiple-impls false}}}
:node-test
{:target :node-script
:output-to "target/out/node-test.js"
:main datahike.test.nodejs-test/-main
:compiler-options {:optimizations :advanced
:infer-externs :auto
:elide-asserts false
:externs ["externs/node_fs.js"]}}
:browser-integration-test
{:target :browser-test
:test-dir "target/browser-integration-test"
:ns-regexp "datahike.kabel.browser-integration-test"
:compiler-options {:optimizations :advanced
:infer-externs :auto
:elide-asserts false
:warnings-as-errors false
:warnings {:fn-deprecated false}}}
:browser-ci
{:target :karma
:output-to "target/browser-ci.js"
:ns-regexp "datahike.kabel.browser-integration-test"
:compiler-options {:optimizations :advanced
:infer-externs :auto
:elide-asserts false
:warnings-as-errors false
:warnings {:fn-deprecated false}}}
:browser-release
{:target :browser
:output-to "npm-package/browser/datahike.js"
:output-dir "npm-package/browser"
:modules {:datahike {:entries [datahike.js.api]}}
:compiler-options {:optimizations :advanced
:infer-externs :auto
:output-feature-set :es-next}}
:npm-release
{:target :npm-module
:output-dir "npm-package"
:entries [datahike.js.api
konserve.node-filestore]
:compiler-options {:optimizations :advanced
:infer-externs :auto
:output-feature-set :es2020
:externs ["externs/node_fs.js"]}}}}