diff options
Diffstat (limited to 'src/api/schema.js')
-rw-r--r-- | src/api/schema.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/api/schema.js b/src/api/schema.js index c4341c1d4..e48d857a6 100644 --- a/src/api/schema.js +++ b/src/api/schema.js @@ -53,14 +53,18 @@ const ResolveModeKeys = { const Platform = { "1": 1, "2": 2, + "3": 3, "browser": 1, - "node": 2 + "node": 2, + "speedy": 3 }; const PlatformKeys = { "1": "browser", "2": "node", + "3": "speedy", "browser": "browser", - "node": "node" + "node": "node", + "speedy": "speedy" }; const JSXRuntime = { "1": 1, |