summary refs log tree commit diff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorAshelyn Rose <git@tempest.dev>2023-05-08 02:17:40 -0600
committerAshelyn Rose <git@tempest.dev>2023-05-08 02:17:40 -0600
commit880cfbeb74546056feab63ed6e92a10c0dbaf2c3 (patch)
tree33c7429bd5b1b968d74c74a4b7fbf0aa072111f7 /tsconfig.json
parent885d95d889633e312567d891831d74d9e120e5b8 (diff)
New layout, uses nextjs
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json39
1 files changed, 39 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..8137c50
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,39 @@
+{
+  "compilerOptions": {
+    "baseUrl": ".",
+    "paths": {
+      "~/*": ["*"]
+    },
+    "lib": [
+      "dom",
+      "dom.iterable",
+      "esnext"
+    ],
+    "allowJs": true,
+    "skipLibCheck": true,
+    "strict": false,
+    "forceConsistentCasingInFileNames": true,
+    "noEmit": true,
+    "incremental": true,
+    "esModuleInterop": true,
+    "module": "esnext",
+    "moduleResolution": "node",
+    "resolveJsonModule": true,
+    "isolatedModules": true,
+    "jsx": "preserve",
+    "plugins": [
+      {
+        "name": "next"
+      }
+    ]
+  },
+  "include": [
+    "next-env.d.ts",
+    ".next/types/**/*.ts",
+    "**/*.ts",
+    "**/*.tsx"
+  ],
+  "exclude": [
+    "node_modules"
+  ]
+}