mirror of
https://github.com/denoland/deno.git
synced 2024-11-13 16:26:08 -05:00
24 lines
541 B
TOML
24 lines
541 B
TOML
[package]
|
|
name = "deno_typescript"
|
|
version = "0.35.0"
|
|
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.35.0" }
|
|
serde_json = "1.0.48"
|
|
serde = { version = "1.0.104", features = ["derive"] }
|