mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-28 09:46:39 +02:00
19 lines
376 B
JSON
19 lines
376 B
JSON
{
|
|
"extends": "@rallly/tsconfig/next.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"~/*": ["public/*"],
|
|
},
|
|
"strictNullChecks": true,
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.js",
|
|
".next/types/**/*.ts",
|
|
"src/app/[locale]/p/[participantUrlId]/page.tsx",
|
|
],
|
|
"exclude": ["node_modules"],
|
|
}
|