-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathtsconfig.json
32 lines (32 loc) · 1022 Bytes
/
tsconfig.json
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
{
"compilerOptions": {
"target": "esnext",
"jsx": "preserve",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"moduleDetection": "force",
"experimentalDecorators": true,
"baseUrl": ".",
"rootDir": ".",
"module": "preserve",
"paths": {
"unhead": ["packages/unhead/src/index"],
"unhead/plugins": ["packages/unhead/src/plugins/index"],
"unhead/utils": ["packages/unhead/src/utils/index"],
"unhead/types": ["packages/unhead/src/types/index"],
"@unhead/ssr": ["packages/unhead/src/server/index"],
"@unhead/vue": ["packages/vue/src/index"],
"@unhead/dom": ["packages/unhead/src/client/index"],
"@unhead/svelte/types": ["packages/svelte/src/types"]
},
"resolveJsonModule": true,
"types": ["vitest/globals"],
"strict": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"declaration": true,
"esModuleInterop": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true
}
}