mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 18:08:48 -07:00
feat(server): tsconfig: don't clear console on nest startup (#4032)
* feat: don't clear nest output * feat: moved config to tsconfig * fix: cleanup package json
This commit is contained in:
parent
efcc66d63b
commit
3edade6761
@ -15,8 +15,8 @@
|
|||||||
"format:fix": "prettier --write .",
|
"format:fix": "prettier --write .",
|
||||||
"start": "npm run start:dev",
|
"start": "npm run start:dev",
|
||||||
"nest": "nest",
|
"nest": "nest",
|
||||||
"start:dev": "nest start --watch --preserveWatchOutput --",
|
"start:dev": "nest start --watch --",
|
||||||
"start:debug": "nest start --debug 0.0.0.0:9230 --watch --preserveWatchOutput --",
|
"start:debug": "nest start --debug 0.0.0.0:9230 --watch --",
|
||||||
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\" --max-warnings 0",
|
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\" --max-warnings 0",
|
||||||
"lint:fix": "npm run lint -- --fix",
|
"lint:fix": "npm run lint -- --fix",
|
||||||
"check": "tsc --noEmit",
|
"check": "tsc --noEmit",
|
||||||
|
@ -15,37 +15,18 @@
|
|||||||
"incremental": true,
|
"incremental": true,
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
|
"preserveWatchOutput": true,
|
||||||
"baseUrl": "./",
|
"baseUrl": "./",
|
||||||
"paths": {
|
"paths": {
|
||||||
"@test": [
|
"@test": ["test"],
|
||||||
"test"
|
"@test/*": ["test/*"],
|
||||||
],
|
"@app/immich": ["src/immich"],
|
||||||
"@test/*": [
|
"@app/immich/*": ["src/immich/*"],
|
||||||
"test/*"
|
"@app/infra": ["src/infra"],
|
||||||
],
|
"@app/infra/*": ["src/infra/*"],
|
||||||
"@app/immich": [
|
"@app/domain": ["src/domain"],
|
||||||
"src/immich"
|
"@app/domain/*": ["src/domain/*"]
|
||||||
],
|
|
||||||
"@app/immich/*": [
|
|
||||||
"src/immich/*"
|
|
||||||
],
|
|
||||||
"@app/infra": [
|
|
||||||
"src/infra"
|
|
||||||
],
|
|
||||||
"@app/infra/*": [
|
|
||||||
"src/infra/*"
|
|
||||||
],
|
|
||||||
"@app/domain": [
|
|
||||||
"src/domain"
|
|
||||||
],
|
|
||||||
"@app/domain/*": [
|
|
||||||
"src/domain/*"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"exclude": [
|
"exclude": ["dist", "node_modules", "upload"]
|
||||||
"dist",
|
}
|
||||||
"node_modules",
|
|
||||||
"upload"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user