@verdaccio/types
TypeScript icon, indicating that this package has built-in type declarations

10.8.0 • Public • Published

Typescript types

Typescript definitions for verdaccio plugins and internal code

Usage

For usage with the library, the tsconfig.json should looks like this.

//tsconfig.json
{
  "compilerOptions": {
    "target": "esnext",
    "module": "commonjs",
    "declaration": true,
    "noImplicitAny": false,
    "strict": true,
    "outDir": "lib",
    "allowSyntheticDefaultImports": true,
    "esModuleInterop": true,
    "typeRoots": [
      "./node_modules/@verdaccio/types/lib/verdaccio",
      "./node_modules/@types"
    ]
  },
  "include": [
    "src/*.ts",
    "types/*.d.ts"
  ]
}

Example

import type {ILocalData, LocalStorage, Logger, Config} from '@verdaccio/types';

 class LocalData implements ILocalData {

  path: string;
  logger: Logger;
  data: LocalStorage;
  config: Config;
  locked: boolean;
  ...
}

Plugins

Versions

Current Tags

Version History

Package Sidebar

Install

npm i @verdaccio/types

Weekly Downloads

8,132

Version

10.8.0

License

MIT

Unpacked Size

42.8 kB

Total Files

16

Last publish

Collaborators

  • sergiohgz
  • verdaccio.npm
  • jotadeveloper
  • ayusharma