17 lines
420 B
JSON
17 lines
420 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react",
|
|
"esModuleInterop": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@components/*": ["src/components/*"],
|
|
"@layouts/*": ["src/layouts/*"],
|
|
"@pages/*": ["src/pages/*"],
|
|
"@styles/*": ["src/styles/*"],
|
|
"@utils/*": ["src/utils/*"],
|
|
"@types/*": ["src/types/*"]
|
|
}
|
|
}
|
|
} |