convert to typescript

This commit is contained in:
2023-09-14 22:43:25 -05:00
parent 4c19f5f7b9
commit f21bef263d
64 changed files with 1109 additions and 605 deletions
+13
View File
@@ -0,0 +1,13 @@
{
"compilerOptions": {
"esModuleInterop": true,
"module": "commonjs",
"target": "es2016",
"declaration": true,
"moduleResolution": "node",
"rootDir": "./src",
"strict": true,
"outDir": "dist"
},
"exclude": ["node_modules", "dist", "examples"]
}