summaryrefslogtreecommitdiff
path: root/asconfig.json
blob: 999b96a9ea4e59f4f69ed789533904c092bb4626 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "targets": {
    "debug": {
      "outFile": "build/out.wasm",
      "textFile": "build/out.wat",
      "sourceMap": true,
      "debug": true
    },
    "release": {
      "outFile": "build/out.wasm",
      "textFile": "build/out.wat",
      "sourceMap": false,
      "optimizeLevel": 3,
      "shrinkLevel": 0,
      "converge": false,
      "noAssert": false
    }
  },
  "options": {
    "bindings": "raw",
		"enable": ["simd"]
  }
}