Skip to content

Commit

Permalink
fix: fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
jiazengp committed Jun 11, 2024
1 parent 1bdfa67 commit cc1b92b
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@
"noUnusedLocals": true,
"resolveJsonModule": true,
"lib": ["ESNext", "DOM"],
"strictNullChecks": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noUnusedParameters": true,
"noEmit": true,
"removeComments": false,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
Expand All @@ -27,7 +22,10 @@
"include": [
"**/.vitepress/**/*.ts",
"**/.vitepress/**/*.mts",
"**/.vitepress/**/*.vue"
"**/.vitepress/**/*.vue",
"**/components/**/*.ts",
"**/components/**/*.tsx",
"**/components/**/*.vue"
],
"exclude": ["**/node_modules/**", "**/dist/**", "unocss.config.ts"]
}

0 comments on commit cc1b92b

Please sign in to comment.