aboutsummaryrefslogtreecommitdiff
path: root/doc/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'doc/tsconfig.json')
-rw-r--r--doc/tsconfig.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/tsconfig.json b/doc/tsconfig.json
new file mode 100644
index 0000000..e8b48d8
--- /dev/null
+++ b/doc/tsconfig.json
@@ -0,0 +1,18 @@
1{
2 "compilerOptions": {
3 "target": "ES2020",
4 "module": "ESNext",
5 "moduleResolution": "Bundler",
6 "lib": ["ES2020", "DOM", "DOM.Iterable"],
7 "jsx": "preserve",
8 "types": ["vitepress/client"],
9 "skipLibCheck": true,
10 "noEmit": true
11 },
12 "include": [
13 "docs/.vitepress/**/*.ts",
14 "docs/.vitepress/**/*.mts",
15 "docs/.vitepress/**/*.vue",
16 "docs/.vitepress/env.d.ts"
17 ]
18}