first commit

This commit is contained in:
John Yeo
2025-01-21 11:18:42 +00:00
commit 479b6d7afb
283 changed files with 42601 additions and 0 deletions

17
shared/tsconfig.json Normal file
View File

@@ -0,0 +1,17 @@
{
"compilerOptions": {
"strict": true,
"composite": true,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"skipLibCheck": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ES2020",
"outDir": "./dist",
"rootDir": "."
},
"include": ["./**/*"],
"exclude": ["node_modules", "dist"]
}