This commit is contained in:
Gary Kwok
2024-06-17 18:05:05 +08:00
commit 56f6d03385
105 changed files with 4350 additions and 0 deletions

24
tsconfig.json Normal file
View File

@@ -0,0 +1,24 @@
{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"baseUrl": ".",
"target": "es6",
"allowJs": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"jsx": "react",
"isolatedModules": true,
"incremental": true,
"allowSyntheticDefaultImports": true,
"paths": {
"@/components/*": ["./src/layouts/components/*"],
"@/shortcodes/*": ["./src/layouts/shortcodes/*"],
"@/helpers/*": ["./src/layouts/helpers/*"],
"@/partials/*": ["./src/layouts/partials/*"],
"@/*": ["./src/*"]
}
},
"include": ["**/*.ts", "**/*.tsx", "**/*.astro"],
"exclude": ["node_modules"]
}