Initial commit

This commit is contained in:
Steve Kinney
2024-09-13 15:59:51 -06:00
commit a028678660
36 changed files with 5932 additions and 0 deletions

16
jsconfig.json Normal file
View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"baseUrl": ".",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"paths": {
"*": ["node_modules/*"],
"./*": ["./*"],
"./*.html": ["./*"],
"./*.html?raw": ["./*"]
}
},
"include": ["examples/**/*.js"],
"exclude": ["node_modules", "dist"]
}