28 lines
765 B
JSON
28 lines
765 B
JSON
|
|
{
|
||
|
|
"extends": "astro/tsconfigs/strict",
|
||
|
|
"compilerOptions": {
|
||
|
|
"baseUrl": ".",
|
||
|
|
"target": "es2022",
|
||
|
|
"allowJs": true,
|
||
|
|
"strict": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"jsx": "react",
|
||
|
|
"isolatedModules": true,
|
||
|
|
"incremental": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"types": ["@astrojs/client"],
|
||
|
|
"paths": {
|
||
|
|
"@assets/*": ["./src/assets/*"],
|
||
|
|
"@components/*": ["./src/components/*"],
|
||
|
|
"@helpers/*": ["src/components/helpers/*"],
|
||
|
|
"@lib/*": ["src/lib/*"],
|
||
|
|
"@shortcodes/*": ["src/components/common/shortcodes/*"],
|
||
|
|
"@types/*": ["src/types/*"],
|
||
|
|
"@/*": ["./src/*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": ["**/*.ts", "**/*.tsx", "**/*.astro"],
|
||
|
|
"exclude": ["node_modules"]
|
||
|
|
}
|