1
0
Fork 0
mirror of https://codeberg.org/MarkusThielker/next-ory.git synced 2025-07-02 04:59:17 +00:00

NORY-7: add dashboard application with basic authentication routing

This commit is contained in:
Markus Thielker 2024-11-28 23:48:45 +01:00
parent 3b05405363
commit f1cc58a651
No known key found for this signature in database
48 changed files with 1713 additions and 0 deletions

44
dashboard/tsconfig.json Normal file
View file

@ -0,0 +1,44 @@
{
"compilerOptions": {
"lib": [
"dom",
"dom.iterable",
"esnext",
"webworker"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": [
"./src/*"
]
},
"types": [
"@serwist/next/typings"
],
"target": "ES2017"
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}