Add basic typescript lib

This commit is contained in:
David Corbitt
2023-08-06 17:29:06 -07:00
parent 109a9ddb1e
commit a53d70d8b2
31 changed files with 2126 additions and 325 deletions

View File

@@ -0,0 +1,13 @@
{
"compilerOptions": {
"declaration": true,
"target": "es6",
"module": "commonjs",
"noImplicitAny": true,
"resolveJsonModule": true,
"outDir": "dist",
"rootDir": ".",
"skipLibCheck": true
},
"exclude": ["dist", "node_modules"],
}