Add package.json

This commit is contained in:
2025-11-24 00:23:48 -06:00
parent 9547a38b6e
commit 1273b987ef
2 changed files with 29 additions and 0 deletions

12
tsconfig.json Normal file
View File

@@ -0,0 +1,12 @@
{
"compilerOptions": {
"target": "es2020",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"skipLibCheck": true,
"esModuleInterop": true
},
"include": ["generated/**/*.ts", "**/*.ts"],
"exclude": ["node_modules"]
}