mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
12 lines
481 B
JSON
12 lines
481 B
JSON
{
|
|
"private": true,
|
|
"name": "server",
|
|
"displayName": "WASM Language Server",
|
|
"version": "0.1.0",
|
|
"author": "Microsoft Corporation",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "cargo rustc --release --target wasm32-wasip1-threads -- -Clink-arg=--initial-memory=10485760 -Clink-arg=--max-memory=10485760",
|
|
"test:wasm": "node ./bin/send.js | wasmtime --wasm-features=threads --wasi-modules=experimental-wasi-threads target/wasm32-wasi-preview1-threads/release/server.wasm"
|
|
}
|
|
} |