Files
zitadel/apps/login/tsconfig.json

18 lines
338 B
JSON
Raw Normal View History

2023-04-03 13:39:51 +02:00
{
2023-04-03 15:38:50 +02:00
"extends": "@zitadel/tsconfig/nextjs.json",
2023-04-03 13:39:51 +02:00
"compilerOptions": {
2023-06-05 23:27:05 +02:00
"jsx": "preserve",
2023-04-04 10:28:48 +02:00
"baseUrl": ".",
2023-04-03 13:39:51 +02:00
"paths": {
2024-05-13 16:17:12 -04:00
"@/*": ["./src/*"]
2023-04-03 13:39:51 +02:00
},
2023-06-05 23:27:05 +02:00
"plugins": [
{
"name": "next"
}
]
2023-04-03 13:39:51 +02:00
},
2023-06-08 07:19:25 +02:00
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}