diff options
-rw-r--r-- | packages/typescript-typings/README.md | 3 | ||||
-rw-r--r-- | packages/typescript-typings/package.json | 21 | ||||
-rw-r--r-- | packages/typescript-typings/src/index.ts | 0 | ||||
-rw-r--r-- | packages/typescript-typings/tsconfig.json | 7 |
4 files changed, 31 insertions, 0 deletions
diff --git a/packages/typescript-typings/README.md b/packages/typescript-typings/README.md new file mode 100644 index 0000000..a8b5828 --- /dev/null +++ b/packages/typescript-typings/README.md @@ -0,0 +1,3 @@ +# @webauthntine/typescript-typings + +TypeScript typings for [@webauthntine/server](../server/) and [@webauthntine/browser](../browser/) diff --git a/packages/typescript-typings/package.json b/packages/typescript-typings/package.json new file mode 100644 index 0000000..8c6dbc9 --- /dev/null +++ b/packages/typescript-typings/package.json @@ -0,0 +1,21 @@ +{ + "name": "@webauthntine/typescript-typings", + "version": "1.0.0", + "description": "TypeScript types used by the @webauthntine series of libraries", + "main": "dist/index.js", + "types": "dist/index.d.ts", + "author": "Matthew Miller <matthew@millerti.me>", + "license": "MIT", + "homepage": "", + "scripts": { + "build": "rimraf dist && tsc", + "prepare": "npm run build" + }, + "keywords": [ + "webauthn", + "typescript", + "types" + ], + "dependencies": { + } +} diff --git a/packages/typescript-typings/src/index.ts b/packages/typescript-typings/src/index.ts new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/packages/typescript-typings/src/index.ts diff --git a/packages/typescript-typings/tsconfig.json b/packages/typescript-typings/tsconfig.json new file mode 100644 index 0000000..9ddf207 --- /dev/null +++ b/packages/typescript-typings/tsconfig.json @@ -0,0 +1,7 @@ +{ + "extends": "../../tsconfig.json", + "compilerOptions": { + "baseUrl": "./src", + "outDir": "./dist", + } +} |