forked from JetBrains/hirschgarten
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
26 lines (21 loc) · 620 Bytes
/
BUILD
File metadata and controls
26 lines (21 loc) · 620 Bytes
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
load("@npm//:defs.bzl", "npm_link_all_packages")
load("@rules_kotlin//kotlin:core.bzl", "define_kt_toolchain", "kt_kotlinc_options")
package(default_visibility = ["//visibility:public"])
kt_kotlinc_options(
name = "kotlinc_options",
include_stdlibs = "none",
jvm_target = "17",
)
define_kt_toolchain(
name = "kotlin_toolchain",
api_version = "2.0",
experimental_multiplex_workers = True,
jvm_target = "17",
kotlinc_options = ":kotlinc_options",
language_version = "2.0",
)
alias(
name = "format",
actual = "//tools/format",
)
npm_link_all_packages(name = "node_modules")