chore: add tsconfig.json

This commit is contained in:
2026-03-08 14:26:25 +00:00
parent e71a3e6538
commit 1e39fbb74d

19
tsconfig.json Normal file
View File

@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "ES2019",
"module": "commonjs",
"lib": ["ES2019"],
"outDir": "dist",
"rootDir": ".",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true
},
"include": ["credentials/**/*", "nodes/**/*"],
"exclude": ["node_modules", "dist"]
}