chore: fix typecheck & seperate works

This commit is contained in:
YunYouJun 2022-06-07 03:50:13 +08:00
parent 405e2c8e65
commit 9bdeafbd96
10 changed files with 148 additions and 85 deletions

View File

@ -10,6 +10,39 @@ on:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: pnpm
- name: Install
run: pnpm install
- name: Lint
run: pnpm run lint
# vue-tsc@0.37.0 parse Markdown error
# typecheck:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: pnpm/action-setup@v2
# - uses: actions/setup-node@v3
# with:
# node-version: 16.x
# cache: pnpm
# - name: Install
# run: pnpm install
# - name: Typecheck
# run: pnpm run typecheck
build:
runs-on: ${{ matrix.os }}
@ -24,8 +57,6 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
run_install: true
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
@ -37,11 +68,5 @@ jobs:
- name: Build
run: pnpm run build
- name: Lint
run: pnpm run lint
- name: Type Check
run: pnpm run typecheck
# - name: Unit Test
# run: pnpm run test:unit

1
.npmrc
View File

@ -1,2 +1,3 @@
shamefully-hoist=true
strict-peer-dependencies=false
ignore-workspace-root-check=true

View File

@ -3,9 +3,11 @@
"antfu.iconify",
"antfu.unocss",
"antfu.vite",
"antfu.goto-alias",
"csstools.postcss",
"dbaeumer.vscode-eslint",
"johnsoncodehk.volar",
"lokalise.i18n-ally"
"vue.volar",
"lokalise.i18n-ally",
"streetsidesoftware.code-spell-checker"
]
}

View File

@ -16,13 +16,11 @@
<a href="https://discord.gg/nd3mPkU5j8" target="_blank">
<img alt="Discord" src="https://img.shields.io/discord/752821465891733574?color=%234960ea&logo=discord">
</a>
<p align="center">
</p>
- [Docs](https://valaxy.yyj.moe/docs): <small>Toggle 中文English in Sidebar</small>
- [Demo](https://valaxy.yyj.moe): <small>with [valaxy-theme-yun](./packages/valaxy-theme-yun/)</small>
</p>
## Usage
Just run the following command to init your blog:
@ -82,7 +80,7 @@ Want to get involved in the development? Look [here](https://valaxy.yyj.moe/docs
❤️ Special thanks to the following sponsors for their support.
<p align="center">
<a href="https://cdn.jsdelivr.net/gh/YunYouJun/sponsors/public/sponsors.svg">
<img src='https://cdn.jsdelivr.net/gh/YunYouJun/sponsors/public/sponsors.svg'/>
<a href="https://sponsors.yunyoujun.cn">
<img src='https://fastly.jsdelivr.net/gh/YunYouJun/sponsors/public/sponsors.svg'/>
</a>
</p>

View File

@ -3,7 +3,7 @@
"type": "module",
"version": "0.3.10",
"private": true,
"packageManager": "pnpm@7.1.0",
"packageManager": "pnpm@7.1.7",
"description": "📄 Vite & Vue powered static blog generator.",
"author": {
"email": "me@yunyoujun.cn",
@ -33,7 +33,7 @@
"prepublishOnly": "npm run build",
"release": "esno scripts/release.ts",
"start": "node packages/valaxy/bin/valaxy.js dev",
"typecheck": "pnpm -r --filter=./packages/** --parallel run typecheck",
"typecheck": "vue-tsc --noEmit",
"test:space": "export NODE_OPTIONS='--inspect --max-old-space-size=2048' && pnpm -C demo/yun run build:ssg"
},
"devDependencies": {
@ -44,7 +44,7 @@
"cross-env": "^7.0.3",
"eslint": "^8.17.0",
"esno": "^0.16.3",
"lint-staged": "^12.4.2",
"lint-staged": "^13.0.0",
"prompts": "^2.4.2",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.8.0",
@ -52,6 +52,7 @@
"typescript": "^4.7.3",
"valaxy": "workspace:*",
"valaxy-theme-yun": "workspace:*",
"vue-tsc": "0.37.0",
"zx": "^6.2.3"
},
"simple-git-hooks": {

13
packages/shims.d.ts vendored
View File

@ -1,4 +1,17 @@
declare const __DEV__: boolean
declare module '*.md' {
import { type DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
declare module '*.vue' {
import { type DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
declare interface Window {
// extend the window

View File

@ -1,8 +1,8 @@
<p align='center'>
<p align="center">
<img width="200" src="https://cdn.jsdelivr.net/gh/YunYouJun/yun/images/meme/yun-good-alpha-compressed.png">
</p>
<p align='center'>
<p align="center">
Theme-Yun<sup><em>(vue)</em></sup>
</p>
@ -27,7 +27,7 @@ pnpm build
## [Sponsors](https://sponsors.yunyoujun.cn)
<p align="center">
<a href="https://cdn.jsdelivr.net/gh/YunYouJun/sponsors/public/sponsors.svg">
<img src='https://cdn.jsdelivr.net/gh/YunYouJun/sponsors/public/sponsors.svg'/>
<a href="https://sponsors.yunyoujun.cn">
<img src='https://fastly.jsdelivr.net/gh/YunYouJun/sponsors/public/sponsors.svg'/>
</a>
</p>

View File

@ -33,8 +33,7 @@
"dev": "tsup --watch --splitting",
"lint": "eslint \"**/*.{vue,ts,js}\"",
"preview": "vite preview",
"preview-https": "serve dist",
"typecheck": "vue-tsc --noEmit"
"preview-https": "serve dist"
},
"dependencies": {
"@ctrl/tinycolor": "^3.4.1",
@ -89,7 +88,6 @@
"debug": "^4.3.4",
"diacritics": "^1.3.0",
"https-localhost": "^4.7.1",
"type-fest": "^2.13.0",
"vue-tsc": "^0.37.0"
"type-fest": "^2.13.0"
}
}

View File

@ -11,7 +11,7 @@ importers:
cross-env: ^7.0.3
eslint: ^8.17.0
esno: ^0.16.3
lint-staged: ^12.4.2
lint-staged: ^13.0.0
prompts: ^2.4.2
rimraf: ^3.0.2
simple-git-hooks: ^2.8.0
@ -19,6 +19,7 @@ importers:
typescript: ^4.7.3
valaxy: workspace:*
valaxy-theme-yun: workspace:*
vue-tsc: 0.37.0
zx: ^6.2.3
devDependencies:
'@antfu/eslint-config': 0.25.1_ud6rd4xtew5bv4yhvkvu24pzm4
@ -28,7 +29,7 @@ importers:
cross-env: 7.0.3
eslint: 8.17.0
esno: 0.16.3
lint-staged: 12.4.2
lint-staged: 13.0.0
prompts: 2.4.2
rimraf: 3.0.2
simple-git-hooks: 2.8.0
@ -36,6 +37,7 @@ importers:
typescript: 4.7.3
valaxy: link:packages/valaxy
valaxy-theme-yun: link:packages/valaxy-theme-yun
vue-tsc: 0.37.0_typescript@4.7.3
zx: 6.2.3
demo/yun:
@ -116,7 +118,6 @@ importers:
vue: ^3.2.37
vue-i18n: ^9.1.10
vue-router: ^4.0.15
vue-tsc: ^0.37.0
yargs: ^17.5.1
dependencies:
'@ctrl/tinycolor': 3.4.1
@ -171,7 +172,6 @@ importers:
diacritics: 1.3.0
https-localhost: 4.7.1
type-fest: 2.13.0
vue-tsc: 0.37.0
packages/valaxy-theme-yun:
specifiers:
@ -3133,13 +3133,8 @@ packages:
/color-name/1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
/colorette/2.0.16:
resolution: {integrity: sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==}
dev: true
/colorette/2.0.17:
resolution: {integrity: sha512-hJo+3Bkn0NCHybn9Tu35fIeoOKGOk5OCC32y4Hz2It+qlCO2Q3DeQ1hRn/tDDMQKRYUEzqsl7jbF6dYKjlE60g==}
dev: false
/combined-stream/1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
@ -3165,6 +3160,12 @@ packages:
/commander/8.3.0:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
dev: false
/commander/9.3.0:
resolution: {integrity: sha512-hv95iU5uXPbK83mjrJKuZyFM/LBAoCV/XhVGkS5Je6tl7sxr6A0ITMw5WoRV46/UaJ46Nllm3Xt7IaJhXTIkzw==}
engines: {node: ^12.20.0 || >=14}
dev: true
/common-tags/1.8.2:
resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
@ -3515,19 +3516,6 @@ packages:
supports-color: 8.1.1
dev: false
/debug/4.3.4_supports-color@9.2.2:
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
dependencies:
ms: 2.1.2
supports-color: 9.2.2
dev: true
/decimal.js/10.3.1:
resolution: {integrity: sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==}
dev: false
@ -3768,7 +3756,7 @@ packages:
is-shared-array-buffer: 1.0.2
is-string: 1.0.7
is-weakref: 1.0.2
object-inspect: 1.12.0
object-inspect: 1.12.2
object-keys: 1.1.1
object.assign: 4.1.2
regexp.prototype.flags: 1.4.3
@ -4708,6 +4696,21 @@ packages:
signal-exit: 3.0.7
strip-final-newline: 2.0.0
/execa/6.1.0:
resolution: {integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
cross-spawn: 7.0.3
get-stream: 6.0.1
human-signals: 3.0.1
is-stream: 3.0.0
merge-stream: 2.0.0
npm-run-path: 5.1.0
onetime: 6.0.0
signal-exit: 3.0.7
strip-final-newline: 3.0.0
dev: true
/executable/4.1.1:
resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==}
engines: {node: '>=4'}
@ -5405,6 +5408,11 @@ packages:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
/human-signals/3.0.1:
resolution: {integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==}
engines: {node: '>=12.20.0'}
dev: true
/iconv-lite/0.4.24:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
engines: {node: '>=0.10.0'}
@ -5690,6 +5698,11 @@ packages:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
/is-stream/3.0.0:
resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
/is-string/1.0.7:
resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
engines: {node: '>= 0.4'}
@ -6018,11 +6031,6 @@ packages:
type-check: 0.4.0
dev: true
/lilconfig/2.0.4:
resolution: {integrity: sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA==}
engines: {node: '>=10'}
dev: true
/lilconfig/2.0.5:
resolution: {integrity: sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==}
engines: {node: '>=10'}
@ -6037,27 +6045,27 @@ packages:
dependencies:
uc.micro: 1.0.6
/lint-staged/12.4.2:
resolution: {integrity: sha512-JAJGIzY/OioIUtrRePr8go6qUxij//mL+RGGoFKU3VWQRtIHgWoHizSqH0QVn2OwrbXS9Q6CICQjfj+E5qvrXg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
/lint-staged/13.0.0:
resolution: {integrity: sha512-vWban5utFt78VZohbosUxNIa46KKJ+KOQTDWTQ8oSl1DLEEVl9zhUtaQbiiydAmx+h2wKJK2d0+iMaRmknuWRQ==}
engines: {node: ^14.13.1 || >=16.0.0}
hasBin: true
dependencies:
cli-truncate: 3.1.0
colorette: 2.0.16
commander: 8.3.0
debug: 4.3.4_supports-color@9.2.2
execa: 5.1.1
lilconfig: 2.0.4
colorette: 2.0.17
commander: 9.3.0
debug: 4.3.4
execa: 6.1.0
lilconfig: 2.0.5
listr2: 4.0.5
micromatch: 4.0.5
normalize-path: 3.0.0
object-inspect: 1.12.1
object-inspect: 1.12.2
pidtree: 0.5.0
string-argv: 0.3.1
supports-color: 9.2.2
yaml: 1.10.2
yaml: 2.1.1
transitivePeerDependencies:
- enquirer
- supports-color
dev: true
/listr2/3.14.0_enquirer@2.3.6:
@ -6090,7 +6098,7 @@ packages:
optional: true
dependencies:
cli-truncate: 2.1.0
colorette: 2.0.16
colorette: 2.0.17
log-update: 4.0.0
p-map: 4.0.0
rfdc: 1.3.0
@ -6345,6 +6353,11 @@ packages:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
/mimic-fn/4.0.0:
resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
engines: {node: '>=12'}
dev: true
/mimic-response/1.0.1:
resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==}
engines: {node: '>=4'}
@ -6512,6 +6525,13 @@ packages:
dependencies:
path-key: 3.1.1
/npm-run-path/5.1.0:
resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
path-key: 4.0.0
dev: true
/nprogress/0.2.0:
resolution: {integrity: sha1-y480xTIT2JVyP8urkH6UIq28r7E=}
dev: false
@ -6537,16 +6557,8 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
/object-inspect/1.12.0:
resolution: {integrity: sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==}
/object-inspect/1.12.1:
resolution: {integrity: sha512-Y/jF6vnvEtOPGiKD1+q+X0CiUYRQtEHp89MLLUJ7TUivtH8Ugn2+3A7Rynqk7BRsAoqeOQWnFnjpDrKSxDgIGA==}
dev: true
/object-inspect/1.12.2:
resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==}
dev: true
/object-is/1.1.5:
resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
@ -6639,6 +6651,13 @@ packages:
dependencies:
mimic-fn: 2.1.0
/onetime/6.0.0:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
engines: {node: '>=12'}
dependencies:
mimic-fn: 4.0.0
dev: true
/open/8.4.0:
resolution: {integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==}
engines: {node: '>=12'}
@ -6843,6 +6862,11 @@ packages:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
/path-key/4.0.0:
resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
engines: {node: '>=12'}
dev: true
/path-parse/1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
@ -7485,7 +7509,7 @@ packages:
dependencies:
call-bind: 1.0.2
get-intrinsic: 1.1.1
object-inspect: 1.12.0
object-inspect: 1.12.2
/signal-exit/3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
@ -7755,6 +7779,11 @@ packages:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
/strip-final-newline/3.0.0:
resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
engines: {node: '>=12'}
dev: true
/strip-indent/3.0.0:
resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
engines: {node: '>=8'}
@ -7804,11 +7833,6 @@ packages:
has-flag: 4.0.0
dev: false
/supports-color/9.2.2:
resolution: {integrity: sha512-XC6g/Kgux+rJXmwokjm9ECpD6k/smUoS5LKlUCcsYr4IY3rW0XyAympon2RmxGrlnZURMpg5T18gWDP9CsHXFA==}
engines: {node: '>=12'}
dev: true
/supports-preserve-symlinks-flag/1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
@ -8637,13 +8661,14 @@ packages:
vue: 3.2.37
dev: false
/vue-tsc/0.37.0:
/vue-tsc/0.37.0_typescript@4.7.3:
resolution: {integrity: sha512-CkIQneatvK/WNh8aQhIWqKqQlUUQpTlYF8rJjuw/zA6Kh3QLHdmO/fOaAGCRobDsA9yIUcEQ9Ii2EcOsCweRJA==}
hasBin: true
peerDependencies:
typescript: '*'
dependencies:
'@volar/vue-typescript': 0.37.0
typescript: 4.7.3
dev: true
/vue/3.2.37:

View File

@ -2,11 +2,11 @@
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "es2016",
"target": "ESNext",
"lib": ["DOM", "ESNext"],
"strict": true,
"esModuleInterop": true,
"incremental": false,
"jsx": "preserve",
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
@ -15,6 +15,7 @@
"forceConsistentCasingInFileNames": true,
"types": [
"vite/client",
"vue/ref-macros",
"vite-plugin-pages/client",
"vite-plugin-vue-layouts/client"
],
@ -26,8 +27,7 @@
"valaxy": ["packages/valaxy/src/index.ts"],
"valaxy-theme-yun/*": ["packages/valaxy-theme-yun/*"],
"valaxy-theme-yun": ["packages/valaxy-theme-yun/index.ts"]
},
"jsx": "preserve"
}
},
"exclude": ["dist", "node_modules", "cypress"]
}