Files
blog/tsconfig.json
2026-01-07 16:24:34 +00:00

46 lines
804 B
JSON

{
"extends": "astro/tsconfigs/base",
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"jsxImportSource": "react",
"baseUrl": ".",
"strictNullChecks": true,
"allowJs": false,
"declaration": true,
"plugins": [
{
"name": "@astrojs/ts-plugin"
}
],
"paths": {
"@components/*": [
"src/components/*"
],
"@assets/*": [
"src/assets/*"
],
"@constants/*": [
"src/constants/*"
],
"@utils/*": [
"src/utils/*"
],
"@i18n/*": [
"src/i18n/*"
],
"@layouts/*": [
"src/layouts/*"
],
"@/*": [
"src/*"
]
}
},
"include": [
"src/**/*"
]
}