41 lines
705 B
JSON
41 lines
705 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"compilerOptions": {
|
|
"plugins": [
|
|
{
|
|
"name": "@astrojs/ts-plugin"
|
|
}
|
|
],
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"verbatimModuleSyntax": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@*": [
|
|
"./*"
|
|
],
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"@config/*": [
|
|
"./src/config/*"
|
|
],
|
|
"@icons": [
|
|
"./src/components/icons.tsx"
|
|
],
|
|
"@icons/*": [
|
|
"./src/icons/*"
|
|
],
|
|
"@components/*": [
|
|
"./src/components/*"
|
|
],
|
|
"@layouts/*": [
|
|
"./src/layouts/*"
|
|
],
|
|
"@styles/*": [
|
|
"./src/styles/*"
|
|
]
|
|
}
|
|
}
|
|
}
|