Files
zitadel/apps/login/tsconfig.json

13 lines
285 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-04-04 10:28:48 +02:00
"baseUrl": ".",
2023-04-03 13:39:51 +02:00
"paths": {
"#/*": ["./*"]
},
2023-04-03 15:38:50 +02:00
"plugins": [{ "name": "next" }]
2023-04-03 13:39:51 +02:00
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
2023-04-03 15:38:50 +02:00
"exclude": ["node_modules"]
2023-04-03 13:39:51 +02:00
}