Files
paseo/packages/web/tsconfig.json
Mohamed Boudra 09a9dad1c4 Based on the changes shown, here's the commit message:
```
chore: simplify build configuration for monorepo

- Remove tsconfig.base.json inheritance in web package
- Inline all TypeScript compiler options for clarity
- Simplify Vercel build and output paths
- Remove unnecessary framework and devCommand overrides
```
2025-10-13 14:26:02 +02:00

29 lines
644 B
JSON

{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"incremental": true,
"allowJs": true,
"noEmit": true,
"jsx": "preserve",
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}