Add initial library

This commit is contained in:
Jonathan Cooper 2026-02-06 18:23:33 -08:00
parent 7cecc1d042
commit e8a82796e0
6 changed files with 180 additions and 0 deletions

15
tsconfig.json Normal file
View file

@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM"],
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"declaration": true,
"declarationMap": true,
"noEmit": true,
"isolatedModules": true,
"skipLibCheck": true
},
"include": ["src"]
}