Skip to content

Commit 1d9f1e7

Browse files
committed
chore(auth): update .env.example and tsconfig.json for environment variables and path mappings
1 parent 23ead0a commit 1d9f1e7

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

packages/auth/.env.example

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ DATABASE_URL=""
66
# GITHUB_CLIENT_ID="" # (optional)
77
# GITHUB_CLIENT_SECRET="" # (optional)
88
# GITLAB_CLIENT_ID="" # (optional)
9-
# GITLAB_CLIENT_SECRET="" # (optional)
9+
# GITLAB_CLIENT_SECRET="" # (optional)
10+
RESEND_FROM=""
11+
RESEND_TOKEN=""

packages/auth/tsconfig.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
{
22
"extends": "@repo/typescript-config/nextjs.json",
33
"compilerOptions": {
4-
"baseUrl": "."
4+
"baseUrl": ".",
5+
"paths": {
6+
"@/*": ["./*"],
7+
"@repo/*": ["../../packages/*"]
8+
}
59
},
610
"include": ["**/*.ts", "**/*.tsx"],
711
"exclude": ["node_modules"]

0 commit comments

Comments
 (0)