1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-11-21 17:36:52 +01:00
blog/tsconfig.json
Matthias Kretschmann 05ad0470c2
migrate to biome (#944)
* migrate to biome

* cleanup

* fix

* use tsx

* script tweaks

* fix test runs

* path tweaks
2024-07-27 21:15:05 +01:00

25 lines
539 B
JSON

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