@helios-lang/type-utils
Advanced tools
Comparing version 0.1.0 to 0.1.1
@@ -14,3 +14,3 @@ { | ||
"exclude": ["node_modules"], | ||
"include": ["src/**/*.d.ts"] | ||
"include": ["src/global.d.ts", "src/**/*.js"] | ||
} |
{ | ||
"name": "@helios-lang/type-utils", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "Global utility types", | ||
"main": "", | ||
"types": "src/index.d.ts", | ||
"main": "src/index.js", | ||
"types": "src/global.d.ts", | ||
"type": "module", | ||
"scripts": { | ||
"build": "npm test", | ||
"clean": "find src/ -name *[!global].d.ts* | xargs rm -f", | ||
"postpublish": "npm run clean", | ||
"prebuild": "npm run clean && npx tsc -p jsconfig.json --noEmit false --emitDeclarationOnly", | ||
"prepare": "npm run build", | ||
@@ -11,0 +14,0 @@ "prettify": "npx prettier . --write", |
@@ -1,5 +0,2 @@ | ||
export {} | ||
declare global { | ||
type Option<T> = null | undefined | T | ||
} | ||
export { isNone, isSome, None } from "./option.js"; | ||
//# sourceMappingURL=index.d.ts.map |
4168
11
57