Files
flatbuffers-bigfoot/tsconfig.json
Björn Harrtell b46db38f57 [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
2020-10-19 13:11:35 -07:00

17 lines
330 B
JSON

{
"compilerOptions": {
"target": "ES5",
"module": "commonjs",
"lib": ["ES2015", "ES2020.BigInt", "DOM"],
"declaration": true,
"outDir": "./js",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": [
"ts/**/*.ts"
]
}