-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmanifest.toml
32 lines (26 loc) · 1.14 KB
/
manifest.toml
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
# Manifest contains metadata about the driver. To learn about the different
# values in this manifest refer to:
# https://github.com/bblfsh/sdk/blob/master/manifest/manifest.go
name = "TypeScript"
language = "typescript"
# status describes the current development status of the driver, the valid
# values for status are: `planning`, `pre-alpha`, `alpha`, `beta`, `stable`,
# `mature` or `inactive`.
status = "alpha"
features = ["ast"]
# documentation block is use to render the README.md file.
[documentation]
description = """
typescript driver for [babelfish](https://github.com/bblfsh/server).
"""
[runtime]
# os defines in with distribution the runtime is executed (and the build
# system). The valid values are `alpine` and `debian`. Alpine is preferred
# since is a micro-distribution, but sometimes is hard or impossible to use
# due to be based on musl and not it libc.
os = "alpine"
# go_version describes the version being use to build the driver Go code.
go_version = "1.12"
# native_version describes the version or versions being use to build and
# execute the native code, you should define at least one. (eg.: "1.8").
native_version = ["2.2.1"]