summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2025-05-08 21:31:00 +0200
committerYuval Adam <_@yuv.al>2025-05-08 22:27:03 +0200
commitc8d6dc54e2ee44daa00b11c6300f4f0d6ef32186 (patch)
tree0073da7bc68f5308610ed7d6d7bdc455ad4c6cf7 /tsconfig.json
parent7450fe585f1253bf30b9ccb7254019aafc5db088 (diff)
Initial migration to AstroJS
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json36
1 files changed, 12 insertions, 24 deletions
diff --git a/tsconfig.json b/tsconfig.json
index e7ff90f..69c1600 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,26 +1,14 @@
{
+ "extends": "astro/tsconfigs/strict",
+ "include": [
+ ".astro/types.d.ts",
+ "**/*"
+ ],
+ "exclude": [
+ "dist"
+ ],
"compilerOptions": {
- "lib": ["dom", "dom.iterable", "esnext"],
- "allowJs": true,
- "skipLibCheck": true,
- "strict": true,
- "noEmit": true,
- "esModuleInterop": true,
- "module": "esnext",
- "moduleResolution": "bundler",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "jsx": "preserve",
- "incremental": true,
- "plugins": [
- {
- "name": "next"
- }
- ],
- "paths": {
- "@/*": ["./*"]
- }
- },
- "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
- "exclude": ["node_modules"]
-}
+ "jsx": "react-jsx",
+ "jsxImportSource": "react"
+ }
+} \ No newline at end of file