chore: update tsconfig aliases

This commit is contained in:
Ben Allfree 2023-11-03 05:25:30 -07:00
parent e1a45ddfc2
commit b901abba30
2 changed files with 4 additions and 5 deletions

View File

@ -1,5 +1,5 @@
import { DEBUG, PH_BIN_CACHE } from '$constants'
import { PocketbaseReleaseDownloadService } from '$services/PocketbaseReleaseDownloadService'
import { PocketbaseReleaseDownloadService } from '$services'
import { LogLevelName, LoggerService } from '$shared'
// gen:import

View File

@ -17,9 +17,8 @@
"noEmit": true,
"baseUrl": ".",
"paths": {
"$util": ["src/util/index"],
"$services": ["src/services/index"],
"$services/*": ["src/services/*"],
"$util": ["src/util"],
"$services": ["src/services"],
"$constants": ["src/constants"],
"$src/*": ["src/*"],
"$shared": ["src/shared"]
@ -29,5 +28,5 @@
"esm": true
},
"include": ["./src"],
"exclude": ["./src/mothership-app/migrations/**/*"]
"exclude": ["src/mothership-app/migrations"]
}