forked from harlan-zw/unlighthouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
34 lines (34 loc) · 968 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
33
34
{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "ESNext",
"lib": ["DOM", "ESNext"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"unlighthouse": ["./packages/unlighthouse/src"],
"@unlighthouse/client": ["./packages/client/src"],
"@unlighthouse/cli": ["./packages/cli/src"],
"@unlighthouse/core": ["./packages/core/src"],
"@unlighthouse/server": ["./packages/server/src"],
"@unlighthouse/nuxt": ["./integrations/nuxt/src"],
"@unlighthouse/vite": ["./integrations/vite/src"],
"@unlighthouse/webpack": ["./integrations/webpack/src"]
}
},
"include": [
"**/*.d.ts",
],
"exclude": [
"**/dist/**",
"**/.unlighthouse/**",
"**/node_modules/**"
]
}