mirror of https://github.com/immich-app/immich.git
refactor(server): move constant into common package (#522)
* refactor(server): move constant into common package * refactor(server): re-arrange import statement in microservice module * refactor(server): move app.config into common package * fix(server): e2e testingpull/530/head
parent
0efcc99f3e
commit
3b55cdc0be
@ -0,0 +1 @@
|
||||
export * from './app.config';
|
||||
@ -0,0 +1 @@
|
||||
export * from './upload_location.constant';
|
||||
@ -0,0 +1,2 @@
|
||||
export * from './config';
|
||||
export * from './constants';
|
||||
@ -0,0 +1,9 @@
|
||||
{
|
||||
"extends": "../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"declaration": true,
|
||||
"outDir": "../../dist/libs/common"
|
||||
},
|
||||
"include": ["src/**/*"],
|
||||
"exclude": ["node_modules", "dist", "test", "**/*spec.ts"]
|
||||
}
|
||||
Loading…
Reference in New Issue