summaryrefslogtreecommitdiff
path: root/website/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'website/tsconfig.json')
-rw-r--r--website/tsconfig.json12
1 files changed, 12 insertions, 0 deletions
diff --git a/website/tsconfig.json b/website/tsconfig.json
new file mode 100644
index 0000000..5f61eef
--- /dev/null
+++ b/website/tsconfig.json
@@ -0,0 +1,12 @@
+{
+ "compilerOptions": {
+ "target": "ESNext",
+ "module": "ESNext",
+ "moduleResolution": "Bundler",
+ "lib": ["ESNext", "DOM", "DOM.Iterable"],
+ "strict": true,
+ "jsx": "preserve",
+ "skipLibCheck": true
+ },
+ "include": [".vitepress/**/*.ts", ".vitepress/**/*.mts", ".vitepress/**/*.vue"]
+}