-
Notifications
You must be signed in to change notification settings - Fork 3
/
meyvn.edn
74 lines (74 loc) · 1.84 KB
/
meyvn.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
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{:pom
{:group-id "org.danielsz",
:artifact-id "certificaat",
:version "2.1.8",
:name "certificaat"},
:packaging
{:uberjar
{:enabled false,
:main-class "main.core",
:excludes
{:artifacts ["org.clojure:google-closure-library"],
:filters
["META-INF/*.MF"
"META-INF/*.SF"
"META-INF/*.DSA"
"META-INF/*.RSA"]}},
:jar
{:enabled true}},
:cljs
{:enabled false,
:compiler-opts
{:infer-externs true,
:output-dir "resources/js/compiled",
:optimizations :advanced,
:parallel-build true,
:verbose true,
:aot-cache true,
:output-to "resources/js/main.js",
:output-wrapper true,
:foreign-libs [],
:main "main.core"},
:tools-deps-alias :cljs},
:testing {:enabled false, :tools-deps-alias :test},
:scm {:enabled false},
:interactive
{:enabled true,
:tools-deps-alias :repl,
:system my.namespace/base,
:repl-port 4009,
:repl-host "0.0.0.0"
:cljs
{:enabled false,
:with-repl true,
:compiler-opts
{:infer-externs true,
:output-dir "target/classes/js/compiled",
:optimizations :none,
:parallel-build true,
:verbose true,
:aot-cache true,
:output-to "target/classes/js/main.js",
:asset-path "/js/compiled",
:output-wrapper true,
:watch "src/cljs",
:source-map true,
:foreign-libs [],
:main "main.core"},
:tools-deps-alias :cljs},
:figwheel
{:enabled false,
:main {:watch-dirs ["src/cljs"], :open-url false},
:build
{:main "main.core",
:foreign-libs [],
:output-dir "target/classes/js/compiled",
:output-to "target/classes/js/main.js",
:asset-path "/js/compiled",
:output-wrapper true,
:aot-cache true,
:infer-externs true},
:tools-deps-alias :figwheel}},
:graalvm {:enabled false, :with-https false},
:profiles {:enabled false}
:distribution-management {:id "clojars", :url "https://clojars.org/repo"}}