forked from btc-vision/example-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathasconfig.json
More file actions
31 lines (31 loc) · 715 Bytes
/
asconfig.json
File metadata and controls
31 lines (31 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"targets": {
"release": {
"outFile": "build/MyToken.wasm"
}
},
"options": {
"sourceMap": false,
"optimizeLevel": 3,
"shrinkLevel": 1,
"converge": true,
"noAssert": false,
"enable": [
"sign-extension",
"mutable-globals",
"nontrapping-f2i",
"bulk-memory",
"simd",
"reference-types",
"multi-value"
],
"runtime": "stub",
"memoryBase": 0,
"initialMemory": 1,
"exportStart": "start",
"use": [
"abort=src/index/abort"
],
"transform": "@btc-vision/opnet-transform"
}
}