From 1e39fbb74dacbb74a9bbf02e46328f554fdcf769 Mon Sep 17 00:00:00 2001 From: Niko Date: Sun, 8 Mar 2026 14:26:25 +0000 Subject: [PATCH] chore: add tsconfig.json --- tsconfig.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..f851d6b --- /dev/null +++ b/tsconfig.json @@ -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"] +} \ No newline at end of file