-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
asconfig.json
36 lines (36 loc) · 859 Bytes
/
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
{
"targets": {
"test": {
"outFile": "build/test.spec.wasm",
"textFile": "build/test.spec.wat",
"sourceMap": true,
"optimizeLevel": 0,
"shrinkLevel": 0,
"converge": false,
"noAssert": false
},
"debug": {
"outFile": "build/test.wasm",
"textFile": "build/test.wat",
"sourceMap": true,
"optimizeLevel": 0,
"shrinkLevel": 0,
"converge": false,
"noAssert": false
},
"bench": {
"outFile": "build/bench.wasm",
"textFile": "build/bench.wat",
"sourceMap": true,
"optimizeLevel": 3,
"shrinkLevel": 0,
"converge": true,
"noAssert": true
}
},
"options": {
"transform": ["./transform", "as-test/transform"],
"disableWarning": [226]
},
"extends": "./node_modules/@assemblyscript/wasi-shim/asconfig.json"
}