Kremta-Website/tsconfig.json

28 lines
770 B
JSON
Raw Normal View History

2025-10-06 12:54:47 +00:00
{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"baseUrl": ".",
2025-10-06 13:12:39 +00:00
"target": "es2022",
2025-10-06 12:54:47 +00:00
"allowJs": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"jsx": "react",
"isolatedModules": true,
"incremental": true,
"allowSyntheticDefaultImports": true,
2025-10-06 13:12:39 +00:00
"types": [/*"@astrojs/client"*/],
2025-10-06 12:54:47 +00:00
"paths": {
"@assets/*": ["./src/assets/*"],
"@components/*": ["./src/components/*"],
"@helpers/*": ["src/components/helpers/*"],
"@lib/*": ["src/lib/*"],
"@shortcodes/*": ["src/components/common/shortcodes/*"],
"@types/*": ["src/types/*"],
"@/*": ["./src/*"]
}
},
"include": ["**/*.ts", "**/*.tsx", "**/*.astro"],
"exclude": ["node_modules"]
}