[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
This commit is contained in:
Björn Harrtell
2020-10-19 22:11:35 +02:00
committed by GitHub
parent 9fa1d27059
commit b46db38f57
14 changed files with 1096 additions and 1057 deletions

View File

@@ -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"
]
}