Beginnings of JavaScript bindings

This commit is contained in:
John J. Camilleri
2021-10-01 12:47:39 +02:00
parent e6960e30f6
commit 314db3ea7f
23 changed files with 311 additions and 3065 deletions

View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"rootDir": "./",
"moduleResolution": "node",
"declaration": true,
"outDir": "./dist",
"removeComments": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
}