18 lines
464 B
JSON
18 lines
464 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"include": [".astro/types.d.ts", "**/*", "eslint.config.cjs"],
|
|
"exclude": ["dist"],
|
|
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react",
|
|
/* Path Aliases */
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./src/*"],
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"strictNullChecks": true, // add if using `base` template
|
|
"allowJs": true // required, and included with all Astro templates
|
|
}
|
|
}
|