-
-
Notifications
You must be signed in to change notification settings - Fork 117
/
tsconfig.json
50 lines (50 loc) · 1.34 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"compilerOptions": {
"target": "ESNext",
"jsx": "preserve",
"jsxImportSource": "vue",
"lib": [
"ESNext",
"dom",
"dom.iterable",
"webworker"
],
"moduleDetection": "force",
"useDefineForClassFields": true,
"module": "es2022",
"moduleResolution": "Bundler",
"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"]
},
"resolveJsonModule": true,
"types": [],
"allowJs": true,
"maxNodeModuleJsDepth": 200,
"strict": true,
"noImplicitOverride": true,
"noImplicitThis": true,
"noUncheckedIndexedAccess": false,
"noEmit": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true
},
"include": [
"**/*.d.ts"
],
"exclude": [
"**/dist/**",
"**/.unlighthouse/**",
"**/node_modules/**"
]
}