Files
zitadel/apps/login/tsconfig.json

27 lines
397 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",
"rootDir": ".",
2023-04-04 10:28:48 +02:00
"baseUrl": ".",
2023-04-03 13:39:51 +02:00
"paths": {
2023-06-08 06:13:07 +02:00
"#/*": [
"./*"
]
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 06:13:07 +02:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}