16 lines
378 B
JSON
16 lines
378 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"include": ["**/*.ts", "**/*.tsx", "src/**/*.astro"],
|
|
"exclude": ["node_modules", "dist"],
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@components/*": ["./src/components/*"],
|
|
"@assets/*": ["./attached_assets/*"]
|
|
}
|
|
}
|
|
}
|