rallly/apps/web/tsconfig.json
2024-01-19 14:23:07 +07:00

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"],
}