aboutsummaryrefslogtreecommitdiff
path: root/apps/website/tsconfig.json
diff options
context:
space:
mode:
authorPauline <git@ethanlibs.co>2024-01-22 04:27:34 +0100
committerPauline <git@ethanlibs.co>2024-01-22 04:27:48 +0100
commitf0e73cf90005709e20b2f16f63d67d6802af3332 (patch)
tree1fb33d1bf14ada662a9cbdea1728c3f031c06ff0 /apps/website/tsconfig.json
parente1f6521a78f5c2a873199fd8cded0bc58ac3aa6e (diff)
downloadNexus-f0e73cf90005709e20b2f16f63d67d6802af3332.tar.gz
Nexus-f0e73cf90005709e20b2f16f63d67d6802af3332.tar.bz2
Nexus-f0e73cf90005709e20b2f16f63d67d6802af3332.zip
feat(layout): add seo metadata to all pages
Diffstat (limited to 'apps/website/tsconfig.json')
-rw-r--r--apps/website/tsconfig.json4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/website/tsconfig.json b/apps/website/tsconfig.json
index 139b7e0..1f976ee 100644
--- a/apps/website/tsconfig.json
+++ b/apps/website/tsconfig.json
@@ -2,6 +2,7 @@
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"composite": false,
+ "jsx": "preserve",
"baseUrl": ".",
"paths": {
"@components/*": ["src/components/*"],
@@ -12,5 +13,6 @@
"@config": ["config.ts"],
"@styles/*": ["src/styles/*"]
}
- }
+ },
+ "exclude": ["node_modules", "dist", ".vercel", "public"]
}