Files
whyrating-hub/tsconfig.json
Alejandro Gutiérrez 54bdf937d8 Initial commit - WhyRating Hub
Simple hub page for WhyRating project resources:
- Brand Site link
- Templates Site link
- Outline Docs link

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-02 00:33:12 +00:00

35 lines
670 B
JSON

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