feat(front): basic next auth configuration done

This commit is contained in:
2024-07-21 00:31:04 +02:00
parent 049e063d48
commit f61bdac457
17 changed files with 333 additions and 29 deletions

View File

@@ -19,8 +19,15 @@
],
"paths": {
"@/*": ["./src/*"]
}
},
"typeRoots": ["./src/modules/auth/types"]
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"src/modules/**/*.d.ts"
],
"exclude": ["node_modules"]
}