16 lines
389 B
JSON
16 lines
389 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"include": [".astro/types.d.ts", "**/*"],
|
|
"exclude": ["dist"],
|
|
"compilerOptions": {
|
|
"strictNullChecks": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@components/*": ["src/components/*"],
|
|
"@images/*": ["src/assets/images/*"],
|
|
"@consts": ["src/consts"]
|
|
}
|
|
}
|
|
}
|