quickshell-web/tsconfig.json
2026-02-18 02:40:40 -08:00

35 lines
945 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": ["src/**/*", "**/**.d.ts", "pagefind.ts"],
"compilerOptions": {
"lib": ["es2023"],
"plugins": [
{
"name": "@astrojs/ts-plugin"
}
],
"jsx": "preserve",
"jsxImportSource": "solid-js",
"verbatimModuleSyntax": true,
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"strict": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@*": ["./*"],
"@/*": ["./src/*"],
"@config/*": ["./src/config/*"],
"@icons": ["./src/components/icons.tsx"],
"@icons/*": ["./src/icons/*"],
"@components/*": ["./src/components/*"],
"@layouts/*": ["./src/layouts/*"],
"@styles/*": ["./src/styles/*"],
"@_types": ["./src/config/_types/index.ts"],
"@_types/*": ["./src/config/_types/*"]
},
"types": ["astro/client"]
}
}