Browse Source

Initial microservice package

master
David Ludwig 3 years ago
parent
commit
7809dba7f2
3 changed files with 18 additions and 0 deletions
  1. +11
    -0
      packages/microservice/package.json
  2. +0
    -0
      packages/microservice/src/index.ts
  3. +7
    -0
      packages/microservice/tsconfig.json

+ 11
- 0
packages/microservice/package.json View File

@ -0,0 +1,11 @@
{
"name": "@autoplex/utils",
"version": "0.1.0",
"main": "dist/lib/index.js",
"types": "dist/typings/index.d.ts",
"license": "MIT",
"scripts": {
"build": "yarn run clean && tsc",
"clean": "rimraf ./dist"
}
}

+ 0
- 0
packages/microservice/src/index.ts View File


+ 7
- 0
packages/microservice/tsconfig.json View File

@ -0,0 +1,7 @@
{
"extends": "../../tsconfig.package.json",
"compilerOptions": {
"outDir": "dist/lib",
"declarationDir": "dist/typings"
}
}

Loading…
Cancel
Save