Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"stylelint-config-recommended-scss": "^17.0.1",
"stylelint-config-recommended-vue": "^1.6.1",
"stylelint-order": "^8.1.1",
"typescript": "^5.9.3",
"typescript": "^6.0.2",
"vite": "^7.3.2",
"vite-plugin-vue-devtools": "^8.1.1",
"vue-router": "^5.0.4",
Expand Down
8 changes: 4 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"extends": "@vue/tsconfig/tsconfig.json",
"compilerOptions": {
"moduleResolution": "node",
"moduleResolution": "bundler",
"rootDir": "./src",
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure about this change.

you'll need to run the build and compare the output (after clearing the directory both times) that the structure and paths are identical

Copy link
Copy Markdown
Contributor

@kaiarrowood kaiarrowood Apr 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The builds appear to match.

I compared build on main:

image

with build on this branch:

image

(with dist folder delete in between)

"strict": true,
"jsx": "preserve",
"importHelpers": true,
"sourceMap": false,
"noEmit": false,
"baseUrl": ".",
"lib": [
"esnext",
"dom",
Expand All @@ -21,10 +21,10 @@
],
"paths": {
"@/*": [
"src/*"
"./src/*"
],
"vue-recaptcha": [
"src/vue-recaptcha.d.ts"
"./src/vue-recaptcha.d.ts"
]
},
},
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7493,10 +7493,10 @@ typescript-eslint@^8.46.1:
"@typescript-eslint/typescript-estree" "8.58.1"
"@typescript-eslint/utils" "8.58.1"

typescript@^5.9.3:
version "5.9.3"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.9.3.tgz#5b4f59e15310ab17a216f5d6cf53ee476ede670f"
integrity sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==
typescript@^6.0.2:
version "6.0.2"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-6.0.2.tgz#0b1bfb15f68c64b97032f3d78abbf98bdbba501f"
integrity sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==

ufo@^1.6.3:
version "1.6.3"
Expand Down
Loading