recipe/tsconfig.json

16 lines
292 B
JSON
Raw Normal View History

2024-08-18 19:16:25 +08:00
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@theme-hope/*": ["./packages/theme/src/client/*.js"]
}
},
"include": [
"**/*.ts",
"**/*.vue",
"**/.vuepress/**/*.ts",
"**/.vuepress/**/*.vue"
]
}