Landing/tsconfig.json
Sergejs Kozinecs 5614ad39ca WIP: Cleaning
2026-07-29 14:31:01 +03:00

16 lines
389 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"strictNullChecks": true,
"jsx": "react-jsx",
"jsxImportSource": "react",
"paths": {
"@/*": ["src/*"],
"@components/*": ["src/components/*"],
"@images/*": ["src/assets/images/*"],
"@consts": ["src/consts"]
}
}
}