srx.astro.nix/tsconfig.json

51 lines
907 B
JSON
Raw Normal View History

2022-12-22 23:31:21 +01:00
{
2024-03-03 13:45:20 +01:00
"extends": "astro/tsconfigs/strict",
2024-03-04 18:18:43 +01:00
"exclude": [
"dist",
"templates",
"result"
],
"compilerOptions": {
2024-03-03 13:45:20 +01:00
"baseUrl": ".",
"paths": {
"@srx/assets": [
"src/assets"
],
"@srx/assets/*": [
"src/assets/*"
],
"@srx/components": [
2024-03-04 18:18:43 +01:00
"src/components"
],
"@srx/components/*": [
2024-03-04 18:18:43 +01:00
"src/components/*"
],
"@srx/layouts": [
2024-03-04 18:18:43 +01:00
"src/layouts"
],
"@srx/layouts/*": [
2024-03-04 18:18:43 +01:00
"src/layouts/*"
],
"@srx/pages": [
2024-03-04 18:18:43 +01:00
"src/pages"
],
"@srx/pages/*": [
2024-03-04 18:18:43 +01:00
"src/pages/*"
],
"@srx/scripts": [
2024-03-04 18:18:43 +01:00
"src/scripts"
],
"@srx/scripts/*": [
2024-03-04 18:18:43 +01:00
"src/scripts/*"
],
"@srx/styles": [
2024-03-04 18:18:43 +01:00
"src/styles"
],
"@srx/styles/*": [
2024-03-04 18:18:43 +01:00
"src/styles/*"
]
2024-03-03 13:45:20 +01:00
},
"jsx": "react-jsx",
"jsxImportSource": "react"
}
2024-03-04 18:18:43 +01:00
}