personal-page/tsconfig.json
2023-09-09 18:49:36 -03:00

18 lines
361 B
JSON

{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react",
"verbatimModuleSyntax": true,
"baseUrl": ".",
"paths": {
"@components/*": ["src/components/*"],
"@layouts/*": ["src/layouts/*"]
},
"plugins": [
{
"name": "@astrojs/ts-plugin"
}
]
}
}