feat: add bun types

This commit is contained in:
Jozef Steinhübl 2024-11-16 12:12:00 +01:00
parent d8da474cc2
commit 044aec9f2c
No known key found for this signature in database
GPG Key ID: E6BC90C91973B08F
3 changed files with 9 additions and 0 deletions

BIN
bun.lockb

Binary file not shown.

View File

@ -30,6 +30,7 @@
"@actions/tool-cache": "^2.0.1" "@actions/tool-cache": "^2.0.1"
}, },
"devDependencies": { "devDependencies": {
"@types/bun": "^1.1.13",
"@types/node": "^20.8.2", "@types/node": "^20.8.2",
"esbuild": "^0.19.2", "esbuild": "^0.19.2",
"prettier": "^2.8.4", "prettier": "^2.8.4",

8
tests/tsconfig.json Normal file
View File

@ -0,0 +1,8 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"types": [
"bun"
]
}
}