17 lines
398 B
JSON
17 lines
398 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"compilerOptions": {
|
|
"strictNullChecks": true,
|
|
"allowJs": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@components/*": ["src/components/*"],
|
|
"@layouts/*": ["src/layouts/*"],
|
|
"@styles/*": ["src/styles/*"],
|
|
"@data/*": ["src/data/*"]
|
|
}
|
|
},
|
|
"include": [".astro/types.d.ts", "**/*"],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|