Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion topics/tools/multiplatform-dsl-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,12 +150,13 @@ environment:
Learn more about [configuring Kotlin/JS projects](https://kotlinlang.org/docs/js-project-setup.html).

A separate `wasmWasi {}` block describes the configuration of Kotlin/Wasm targets that support the WASI system interface.
Here, only the [`nodejs`](#node-js) execution environment is available:
It supports the `nodejs` and `wasmtime` execution environments:

```kotlin
kotlin {
wasmWasi {
nodejs()
wasmtime()
binaries.executable()
}
}
Expand Down