forked from AssemblyScript/assemblyscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasconfig.json
47 lines (47 loc) · 1.25 KB
/
asconfig.json
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"entries": [
"./glue/wasm/index.ts",
"./index-wasm.ts"
],
"options": {
"exportStart": "_initialize",
"exportRuntime": true,
"initialMemory": 768,
"runtime": "incremental",
"bindings": [ "esm" ],
"stats": true
},
"targets": {
"debug": {
"outFile": "../build/assemblyscript.debug.wasm",
"textFile": "../build/assemblyscript.debug.wast",
"debug": true,
"sourceMap": true
},
"release": {
"outFile": "../build/assemblyscript.release.wasm",
"textFile": "../build/assemblyscript.release.wast",
"optimizeLevel": 3,
"shrinkLevel": 0
},
"rtraced": {
"outFile": "../build/assemblyscript.rtraced.wasm",
"textFile": "../build/assemblyscript.rtraced.wast",
"debug": true,
"use": "ASC_RTRACE=1",
"runPasses": []
},
"debug-bootstrap": {
"outFile": "../build/assemblyscript.debug-bootstrap.wasm",
"textFile": "../build/assemblyscript.debug-bootstrap.wast",
"debug": true,
"sourceMap": true
},
"release-bootstrap": {
"outFile": "../build/assemblyscript.release-bootstrap.wasm",
"textFile": "../build/assemblyscript.release-bootstrap.wast",
"optimizeLevel": 3,
"shrinkLevel": 0
}
}
}