blob: ee4dfab27a588db81a3f6dbc99d4cbc185fb4850 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
},
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["node_modules", "dist", ".docusaurus", "build"]
}
|