feat(typescript-types): Add IsAny<T>

This commit is contained in:
T. R. Bernstein
2025-07-12 01:58:42 +02:00
parent 3c17970cd0
commit 5454e903b8
8 changed files with 219 additions and 51 deletions

View File

@@ -0,0 +1,28 @@
{
"name": "@tabshift/typescript-types",
"description": "Extended utility types for Typescript",
"version": "1.0.0",
"type": "module",
"files": [
"src"
],
"scripts": {
"test": "tstyche",
"prepublish": "pnpm build"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@tabshift/typescript-config": "workspace:",
"tstyche": "^4.1.0",
"typescript": "latest"
},
"author": "T. R. Bernstein <ljspkgs01-project@tabshift.dev>",
"license": "EUPL-1.2",
"exports": {
".": {
"types": "./src/index.d.ts"
}
}
}