-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
tsconfig.json
43 lines (43 loc) · 1.12 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
{
"compilerOptions": {
"target": "es2022",
"jsx": "preserve",
"lib": ["DOM", "ESNext"],
"baseUrl": ".",
"module": "ESNext",
"moduleResolution": "node",
"paths": {
"@slidev/client": ["./packages/client/index.ts"],
"@slidev/client/*": ["./packages/client/*"],
"@slidev/types": ["./packages/types/src/index.ts"],
"@slidev/parser/fs": ["./packages/parser/src/fs.ts"],
"@slidev/parser/core": ["./packages/parser/src/core.ts"],
"@slidev/parser": ["./packages/parser/src/index.ts"]
},
"resolveJsonModule": true,
"types": [
"vite",
"vite/client",
"node",
"vite-plugin-vue-server-ref/module"
],
"strict": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noEmit": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
},
"include": [
"./*.ts",
"./docs/**/*.ts",
"./docs/**/*.vue",
"./packages/**/*.ts",
"./packages/**/*.vue",
"./demo/**/*.ts",
"./demo/**/*.vue",
"./test/**/*.ts"
],
"exclude": ["**/dist/**", "**/node_modules/**"]
}