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