-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
42 lines (42 loc) · 936 Bytes
/
tsconfig.json
File metadata and controls
42 lines (42 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"compilerOptions": {
"target": "esnext",
"jsx": "preserve",
"lib": [
"esnext",
"dom"
],
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "node",
"paths": {
"#build/ui": [
"./node_modules/@nuxt/ui/.nuxt/ui",
"./node_modules/@nuxt/ui/.nuxt/ui/*"
]
},
"noErrorTruncation": true,
"resolveJsonModule": true,
"types": [
"@vitest/browser/matchers",
"unplugin-icons/types/vue",
"@cloudflare/workers-types",
"@cloudflare/vitest-pool-workers",
"@types/wicg-file-system-access"
],
"allowArbitraryExtensions": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"sourceMap": true,
"esModuleInterop": true
},
"include": [
".vitepress/**/*.ts",
"web/**/*",
"server/**/*",
"content/**/*",
"env.d.ts",
"auto-imports.d.ts",
"components.d.ts"
]
}