18 lines
361 B
JSON
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"
|
|
}
|
|
]
|
|
}
|
|
}
|