-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add tsconfig.json for TypeScript configuration
- Loading branch information
1 parent
c22fbd9
commit 5d5e423
Showing
6 changed files
with
24 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
// 响应式布局断点,和代码块主题设置,而非网站主题 | ||
// 响应式布局断点,网站主题色和代码块主题设置 | ||
// https://theme-hope.vuejs.press/zh/config/style.html | ||
// you can change config here | ||
|
||
//$theme-color: #3eaf7c !default; | ||
//$theme-colors: #2196f3, #f26d6d, #fb9b5f; | ||
|
||
// https://theme-hope.vuejs.press/zh/guide/interface/code-theme.html | ||
//$code-light-theme: 'one-light'; | ||
//$code-dark-theme: 'one-dark'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"compilerOptions": { | ||
"module": "NodeNext", | ||
"moduleResolution": "NodeNext", | ||
"target": "ES2022" | ||
}, | ||
"include": ["docs/.vuepress/**/*.ts", "docs/.vuepress/**/*.vue"], | ||
"exclude": ["node_modules"] | ||
} |