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