chore: update tsconfig.json to enable declaration generation and specify output directories

This commit is contained in:
Alexander Zinn
2025-08-19 12:30:19 -04:00
parent 04a81427df
commit 27ae7789ef

View File

@@ -12,7 +12,12 @@
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"emitDeclarationOnly": true,
"declaration": true,
"declarationDir": "./dist/types",
"outDir": "./dist/node",
"rootDir": "./src",
"declarationMap": true,
// Best practices
"strict": true,