mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-15 21:02:10 +03:00
235bc7c889
This commit starts to add some simple tests for our TypeScript output of the wasm-bindgen CLI, currently just running `tsc` to make sure syntax looks good and types are emitted as expected. This'll hopefully be able to get expanded over time with bug reports as they come in as well as ensure that we don't regress anything in egregious manners! Closes #922
12 lines
194 B
TOML
12 lines
194 B
TOML
[package]
|
|
name = "typescript-tests"
|
|
version = "0.1.0"
|
|
authors = ["The wasm-bindgen Developers"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
wasm-bindgen = { path = '../..' }
|
|
|
|
[lib]
|
|
crate-type = ['cdylib']
|