mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-19 20:36:19 +00:00
1421ba5a9b
* Code for running wasm file. * Add test for wasm exported function. * Use target names for build files. Co-authored-by: nabarun <nabarun@deepstacksoft.com>
21 lines
412 B
JSON
21 lines
412 B
JSON
{
|
|
"targets": {
|
|
"debug": {
|
|
"binaryFile": "build/debug.wasm",
|
|
"textFile": "build/debug.wat",
|
|
"sourceMap": true,
|
|
"debug": true
|
|
},
|
|
"release": {
|
|
"binaryFile": "build/release.wasm",
|
|
"textFile": "build/release.wat",
|
|
"sourceMap": true,
|
|
"optimizeLevel": 3,
|
|
"shrinkLevel": 0,
|
|
"converge": false,
|
|
"noAssert": false
|
|
}
|
|
},
|
|
"options": {}
|
|
}
|