summaryrefslogtreecommitdiff
path: root/geshem/tsconfig.json
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2024-09-23 09:18:05 +0200
committerYuval Adam <_@yuv.al>2024-09-23 09:18:05 +0200
commitbefc9ba3e4a9b24cdd0397663c04c98688d98d9b (patch)
treed000b369d8deef80454e65cead8f3401d2a9615f /geshem/tsconfig.json
parent257c970be15e85e9f1bb200aadc82a9b98c57434 (diff)
Initial nextjs project generation
Diffstat (limited to 'geshem/tsconfig.json')
-rw-r--r--geshem/tsconfig.json26
1 files changed, 26 insertions, 0 deletions
diff --git a/geshem/tsconfig.json b/geshem/tsconfig.json
new file mode 100644
index 0000000..e7ff90f
--- /dev/null
+++ b/geshem/tsconfig.json
@@ -0,0 +1,26 @@
+{
+ "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"]
+}