Skip to content

Commit

Permalink
Update TypeScript configuration and add JWT dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
yunho7687 committed Dec 15, 2024
1 parent 2f585bf commit 1f00071
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 7 deletions.
29 changes: 24 additions & 5 deletions client/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
Expand All @@ -13,9 +17,24 @@
"jsx": "preserve",
"incremental": true,
"paths": {
"@/*": ["./src/*"]
}
"@/*": [
"./src/*"
]
},
"plugins": [
{
"name": "next"
}
]
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "src/types/svg.d.ts"],
"exclude": ["node_modules"]
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"src/types/svg.d.ts",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}
45 changes: 43 additions & 2 deletions server/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ freezegun = "^1.5.1"
gunicorn = "^22.0.0"
python-dotenv = "^1.0.1"
django-extensions = "^3.2.3"
djangorestframework-simplejwt = "^5.3.1"


[tool.poetry.group.dev.dependencies]
Expand Down

0 comments on commit 1f00071

Please sign in to comment.