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", "moduleResolution": "bundler",
"allowImportingTsExtensions": true, "allowImportingTsExtensions": true,
"verbatimModuleSyntax": true, "verbatimModuleSyntax": true,
"noEmit": true, "emitDeclarationOnly": true,
"declaration": true,
"declarationDir": "./dist/types",
"outDir": "./dist/node",
"rootDir": "./src",
"declarationMap": true,
// Best practices // Best practices
"strict": true, "strict": true,