Files
dicebear--dicebear/apps/docs/tsconfig.json
T
2026-07-13 12:25:08 +08:00

20 lines
487 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"allowJs": true,
"strict": true,
"jsx": "preserve",
"types": [],
"paths": {
"@theme/*": ["./.vitepress/theme/*"],
"@playground/*": ["./.vitepress/theme/components/playground/*"]
},
"skipLibCheck": true
},
"include": ["env.d.ts", ".vitepress/**/*"],
"exclude": [".vitepress/cache", ".vitepress/dist"]
}