{ "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" ], "@components/*": [ "./src/components/*" ], "@layouts/*": [ "./src/layouts/*" ], "@styles/*": [ "./src/styles/*" ] } } }