Files
altbin.dev/tsconfig.json
T

27 lines
731 B
JSON
Raw Normal View History

2025-08-13 17:09:12 +02:00
{
"compilerOptions": {
2025-08-20 18:18:49 +02:00
"target": "es2017",
2025-08-13 17:09:12 +02:00
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
2025-08-20 18:18:49 +02:00
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
2025-08-13 17:09:12 +02:00
"module": "esnext",
2025-08-20 18:18:49 +02:00
"moduleResolution": "node", // ✅ change "bundler" en "node"
2025-08-13 17:09:12 +02:00
"resolveJsonModule": true,
"isolatedModules": true,
2025-08-20 18:18:49 +02:00
"noEmit": true,
2025-08-13 17:09:12 +02:00
"jsx": "preserve",
"incremental": true,
2025-08-20 18:18:49 +02:00
"plugins": [{ "name": "next" }],
2025-08-13 17:09:12 +02:00
"paths": {
"@/*": ["./*"]
}
},
2025-08-20 18:18:49 +02:00
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
2025-08-13 17:09:12 +02:00
"exclude": ["node_modules"]
}