blob: 66a278576fe1e0fef47ac29357c2e7186b6195d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
[package]
name = "deno_typescript"
version = "0.45.2"
license = "MIT"
description = "To compile TypeScript to a snapshot during build.rs"
repository = "https://github.com/denoland/deno"
authors = ["the Deno authors"]
edition = "2018"
exclude = [
"typescript/tests/*",
"typescript/src/*",
"typescript/scripts/*",
"typescript/doc/*",
"typescript/lib/*/*.json",
]
[lib]
path = "lib.rs"
[dependencies]
deno_core = { path = "../core", version = "0.45.0" }
serde_json = "1.0.52"
serde = { version = "1.0.106", features = ["derive"] }
|