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
|
|
|
},
|
2024-09-10 11:57:09 +02:00
|
|
|
"include": [
|
|
|
|
|
"next-env.d.ts",
|
|
|
|
|
"**/*.ts",
|
|
|
|
|
"**/*.tsx",
|
|
|
|
|
".next/types/**/*.ts",
|
|
|
|
|
"custom-config.js"
|
|
|
|
|
],
|
2023-06-08 07:19:25 +02:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
|
}
|