This website works better with JavaScript.
Home
Explore
Help
Sign In
Autoplex
/
autoplex_old
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Initial microservice package
master
David Ludwig
3 years ago
parent
eb38aaf32c
commit
7809dba7f2
3 changed files
with
18 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+11
-0
packages/microservice/package.json
+0
-0
packages/microservice/src/index.ts
+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"
}
}
Write
Preview
Loading…
Cancel
Save