-
-
Notifications
You must be signed in to change notification settings - Fork 374
/
tsconfig.json
54 lines (54 loc) · 2.03 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
51
52
53
54
{
"compilerOptions": {
"target": "esnext",
"lib": ["esnext", "DOM"],
"rootDir": ".",
"module": "esnext",
"moduleResolution": "Bundler",
"paths": {
"@shikijs/core/types": ["./packages/core/src/types.ts"],
"@shikijs/core/wasm-inlined": ["./packages/core/src/wasm.ts"],
"@shikijs/core": ["./packages/core/src/index.ts"],
"@shikijs/transformers": ["./packages/transformers/src/index.ts"],
"@shikijs/twoslash/core": ["./packages/twoslash/src/core.ts"],
"@shikijs/twoslash": ["./packages/twoslash/src/index.ts"],
"@shikijs/vitepress-twoslash/client": ["./packages/vitepress-twoslash/src/client.ts"],
"@shikijs/vitepress-twoslash": ["./packages/vitepress-twoslash/src/index.ts"],
"@shikijs/markdown-it": ["./packages/markdown-it/src/index.ts"],
"@shikijs/types": ["./packages/types/src/index.ts"],
"@shikijs/engine-javascript": ["./packages/engine-javascript/src/index.ts"],
"@shikijs/engine-oniguruma/wasm-inline": ["./packages/engine-oniguruma/src/wasm-inline.ts"],
"@shikijs/engine-oniguruma": ["./packages/engine-oniguruma/src/index.ts"],
"shiki/core": ["./packages/shiki/src/core.ts"],
"shiki/wasm": ["./packages/shiki/src/wasm.ts"],
"shiki/langs": ["./packages/shiki/src/langs.ts"],
"shiki/themes": ["./packages/shiki/src/themes.ts"],
"shiki/bundle/web": ["./packages/shiki/src/bundle-web.ts"],
"shiki/bundle/full": ["./packages/shiki/src/bundle-full.ts"],
"shiki": ["./packages/shiki/src/index.ts"]
},
"resolveJsonModule": true,
"types": ["vite/client", "node"],
"allowJs": true,
"strict": true,
"strictNullChecks": true,
"noEmit": true,
"preserveValueImports": false,
"esModuleInterop": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true
},
"include": [
"**/*.ts",
"**/*.mjs",
"docs/.vitepress/**/*.ts",
"docs/.vitepress/**/*.vue",
"eslint.config.js"
],
"exclude": [
"**/vendor/**",
"**/node_modules/**",
"**/dist/**",
"**/fixtures/**"
]
}