Files
Portfolio/tsconfig.json
T
damjan_savicandClaude Opus 4.5 2854a02afb Update config, dependencies and add icon
- Update next.config.ts and tsconfig.json configuration
- Update ContactInfo component
- Add app icon (SVG)
- Add blog image prompts

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

43 lines
717 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": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": [
"./src/*"
]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules",
"**/*.bak"
]
}