| { | |
| "extends": "@midday/tsconfig/nextjs.json", | |
| "compilerOptions": { | |
| "baseUrl": ".", | |
| "paths": { | |
| "@/*": ["./src/*"], | |
| "@api/*": ["../api/src/*"], | |
| "@engine/*": ["../engine/src/*"], | |
| "@jobs/*": ["../../packages/jobs/src/*"] | |
| }, | |
| "strict": true | |
| }, | |
| "include": [ | |
| "**/*.ts", | |
| "**/*.tsx", | |
| "../../types", | |
| "next-env.d.ts", | |
| "next.config.js", | |
| "tailwind.config.ts", | |
| ".next/types/**/*.ts" | |
| ], | |
| "exclude": ["node_modules", ".next"] | |
| } | |