20 lines
440 B
JSON
20 lines
440 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react",
|
|
"verbatimModuleSyntax": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@components/*": ["src/components/*"],
|
|
"@layouts/*": ["src/layouts/*"],
|
|
"@assets/*": ["src/assets/*"],
|
|
"@locales/*": ["public/locales/*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "@astrojs/ts-plugin"
|
|
}
|
|
]
|
|
}
|
|
}
|