mirror of
https://github.com/acedanger/finance.git
synced 2025-12-05 22:50:12 -08:00
22 lines
548 B
JSON
22 lines
548 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"include": [".astro/types.d.ts", "**/*"],
|
|
"exclude": ["dist"],
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@components/*": ["src/components/*"],
|
|
"@layouts/*": ["src/layouts/*"],
|
|
"@data/*": ["src/data/*"],
|
|
"@pages/*": ["src/pages/*"],
|
|
"@styles/*": ["src/styles/*"],
|
|
"@stores/*": ["src/stores/*"],
|
|
"@utils": ["src/utils"],
|
|
"@types": ["src/types.ts"]
|
|
}
|
|
}
|
|
}
|