1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-23 17:56:26 +02:00
blog/tsconfig.json
Matthias Kretschmann 3b25ae2282
Location fetching (#843)
* location component

* fetching with @nanostores/query

* layouts reorg

* typescript plugins cleanup

* location component unit test cases

* fetch only when visible
2023-10-04 14:45:54 +01:00

29 lines
699 B
JSON

{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react",
"baseUrl": ".",
"paths": {
"@config/*": [".config/*"],
"@components/*": ["src/components/*"],
"@layouts/*": ["src/layouts/*"],
"@images/*": ["src/images/*"],
"@lib/*": ["src/lib/*"],
"@stores/*": ["src/stores/*"],
"@content/*": ["content/*"],
"@test/*": ["test/*"]
},
"typeRoots": ["./src/@types", "./node_modules/@types"]
},
"exclude": ["src/images/components", "src/content"],
"include": [
"src/**/*",
"content/**/*",
"public/**/*",
"scripts/**/*",
"test/**/*",
".config/**/*"
]
}