rallly/apps/web/tsconfig.json
2024-11-09 15:43:25 +00:00

19 lines
400 B
JSON

{
"extends": "@rallly/tsconfig/next.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"strictNullChecks": true,
"types": ["vitest/globals"]
},
"include": [
"**/*.ts",
"**/*.tsx",
"**/*.js",
".next/types/**/*.ts",
"vitest.config.mts"
],
"exclude": ["node_modules", ".next/**/*", "playwright-report", "test-results"]
}