diff options
author | Björn Harrtell <bjornharrtell@users.noreply.github.com> | 2020-10-19 22:11:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-19 13:11:35 -0700 |
commit | b46db38f578ba96ec0d767d1d3a5071e365a6b19 (patch) | |
tree | 36944a4f9466f76baa5c5f3388847b9631d4a805 /tsconfig.mjs.json | |
parent | 9fa1d27059a69149856c6e003da8c9723fec7506 (diff) | |
download | flatbuffers-b46db38f578ba96ec0d767d1d3a5071e365a6b19.tar.gz flatbuffers-b46db38f578ba96ec0d767d1d3a5071e365a6b19.tar.bz2 flatbuffers-b46db38f578ba96ec0d767d1d3a5071e365a6b19.zip |
[JS/TS] Rewrite flexbuffers JS to TS (#6148)
* Partial TS rewrite
* Completed port but bugs remain
* Expose builder function
* Break out and fix stack-value and formatting
Diffstat (limited to 'tsconfig.mjs.json')
-rw-r--r-- | tsconfig.mjs.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tsconfig.mjs.json b/tsconfig.mjs.json index a887a1c3..5af9460d 100644 --- a/tsconfig.mjs.json +++ b/tsconfig.mjs.json @@ -2,7 +2,7 @@ "compilerOptions": { "target": "ES2017", "module": "ES2015", - "lib": ["ES2017"], + "lib": ["ES2017", "ES2020.BigInt", "DOM"], "declaration": true, "outDir": "./mjs", "strict": true, @@ -11,6 +11,6 @@ "forceConsistentCasingInFileNames": true }, "include": [ - "ts/*.ts" + "ts/**/*.ts" ] }
\ No newline at end of file |