diff options
author | 2022-01-28 23:56:45 -0800 | |
---|---|---|
committer | 2022-01-28 23:56:45 -0800 | |
commit | bf4943eec152ca1617db9c004f19fa5c27aa4b82 (patch) | |
tree | a59d793b36a9c28c2ccf7f74c61f48a5502bbcc1 /src/api/schema.js | |
parent | 97d17904d3f6b850e8973b84d6b4ad5e22afb941 (diff) | |
download | bun-bf4943eec152ca1617db9c004f19fa5c27aa4b82.tar.gz bun-bf4943eec152ca1617db9c004f19fa5c27aa4b82.tar.zst bun-bf4943eec152ca1617db9c004f19fa5c27aa4b82.zip |
Implement TOML parser
No Date/DateTime/Time/Local Time yet
Diffstat (limited to 'src/api/schema.js')
-rw-r--r-- | src/api/schema.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/api/schema.js b/src/api/schema.js index 0405b4457..da91af252 100644 --- a/src/api/schema.js +++ b/src/api/schema.js @@ -6,6 +6,7 @@ const Loader = { 5: 5, 6: 6, 7: 7, + 8: 8, jsx: 1, js: 2, ts: 3, @@ -13,6 +14,7 @@ const Loader = { css: 5, file: 6, json: 7, + toml: 8, }; const LoaderKeys = { 1: "jsx", @@ -22,6 +24,7 @@ const LoaderKeys = { 5: "css", 6: "file", 7: "json", + 8: "toml", jsx: "jsx", js: "js", ts: "ts", @@ -29,6 +32,7 @@ const LoaderKeys = { css: "css", file: "file", json: "json", + toml: "toml", }; const FrameworkEntryPointType = { 1: 1, |