Improve common-utils intellisense. Currently "Go to Definition" on an… (#1159)

This commit is contained in:
Brandon Pereira 2025-09-11 12:57:41 -06:00 committed by GitHub
parent d938b4a476
commit 92224d65c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 13 additions and 12 deletions

View file

@ -0,0 +1,5 @@
---
"@hyperdx/common-utils": patch
---
Improve Intellisense on common-utils package

View file

@ -48,7 +48,8 @@
"typescript": "^4.9.5"
},
"scripts": {
"dev": "nodemon --watch ./src --ext ts --exec \"tsup\"",
"dev": "nodemon --watch ./src --ext ts --exec \"yarn dev:build\"",
"dev:build": "tsup && tsc --emitDeclarationOnly --declaration",
"build": "tsup",
"ci:build": "tsup",
"lint": "npx eslint --quiet . --ext .ts",

View file

@ -1,19 +1,14 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"declarationMap": true,
"baseUrl": "./src",
"paths": {
"@/*": [
"./*"
]
"@/*": ["./*"]
},
"declaration": true,
"outDir": "build",
"outDir": "dist"
},
"include": [
"src"
],
"exclude": [
"node_modules"
]
}
"include": ["src"],
"exclude": ["node_modules"]
}