mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 22:52:48 +00:00
24 lines
382 B
JSON
Executable File
24 lines
382 B
JSON
Executable File
{
|
|
"extends": "@zitadel/tsconfig/nextjs.json",
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
"custom-config.js"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|