init
Some checks failed
Publish Library / Build NPM Project (push) Failing after 18s
Publish Library / Tag Version (push) Has been skipped
Publish Library / Publish CDN & Docs (push) Has been skipped

This commit is contained in:
2024-11-29 17:57:07 -05:00
commit 9f71f97833
34 changed files with 4023 additions and 0 deletions

20
tsconfig.json Normal file
View File

@ -0,0 +1,20 @@
{
"include": ["src"],
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"module": "NodeNext",
"lib": ["ESNext"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "NodeNext",
"resolveJsonModule": true,
"isolatedModules": true,
"declaration": true,
"noEmit": true,
/* Linting */
"strict": true
}
}