-
-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
This PR was squashed before being merged into the main branch. Discussion ---------- Allow ts-loader ^9.0.0, close #993 Like #999, the only breaking change is that the minimum supported version of Node.js is 12.0.0, see https://github.com/TypeStrong/ts-loader/blob/main/CHANGELOG.md#v900 **EDIT:** PR #1000 🤯 **EDIT 2:** Looks like something broke. It happens since 9.0.0 (exact version) but I don't know what happens. **EDIT 3:** Added TypeScript types for `.vue`, and it's working fine. Not sure if it's really a BC break, I expect most of people using Vue 3 + TypeScript already using a `vue-shims.d.ts` file... 😕 Commits ------- 4587706 Allow ts-loader ^9.0.0, close #993
- Loading branch information
Showing
3 changed files
with
14 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
declare module '*.vue' { | ||
import { defineComponent } from 'vue'; | ||
|
||
const component: ReturnType<typeof defineComponent>; | ||
export default component; | ||
} |
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 |
---|---|---|
|
@@ -2863,16 +2863,7 @@ encodeurl@~1.0.2: | |
resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" | ||
integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= | ||
|
||
enhanced-resolve@^4.0.0: | ||
version "4.5.0" | ||
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz#2f3cfd84dbe3b487f18f2db2ef1e064a571ca5ec" | ||
integrity sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg== | ||
dependencies: | ||
graceful-fs "^4.1.2" | ||
memory-fs "^0.5.0" | ||
tapable "^1.0.0" | ||
|
||
enhanced-resolve@^5.8.0: | ||
enhanced-resolve@^5.0.0, enhanced-resolve@^5.8.0: | ||
version "5.8.2" | ||
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.8.2.tgz#15ddc779345cbb73e97c611cd00c01c1e7bf4d8b" | ||
integrity sha512-F27oB3WuHDzvR2DOGNTaYy0D5o0cnrv8TeI482VM4kYgQd/FT9lUQwuNsJ0oOHtBUq7eiW5ytqzp7nBFknL+GA== | ||
|
@@ -2902,7 +2893,7 @@ envinfo@^7.7.3: | |
resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475" | ||
integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw== | ||
|
||
errno@^0.1.1, errno@^0.1.3: | ||
errno@^0.1.1: | ||
version "0.1.8" | ||
resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f" | ||
integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A== | ||
|
@@ -4737,14 +4728,6 @@ memfs@^3.1.2, memfs@^3.2.2: | |
dependencies: | ||
fs-monkey "1.0.3" | ||
|
||
memory-fs@^0.5.0: | ||
version "0.5.0" | ||
resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz#324c01288b88652966d161db77838720845a8e3c" | ||
integrity sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA== | ||
dependencies: | ||
errno "^0.1.3" | ||
readable-stream "^2.0.1" | ||
|
||
[email protected]: | ||
version "1.0.1" | ||
resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" | ||
|
@@ -6873,14 +6856,13 @@ tr46@^1.0.1: | |
dependencies: | ||
punycode "^2.1.0" | ||
|
||
ts-loader@^8.0.1: | ||
version "8.3.0" | ||
resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-8.3.0.tgz#83360496d6f8004fab35825279132c93412edf33" | ||
integrity sha512-MgGly4I6cStsJy27ViE32UoqxPTN9Xly4anxxVyaIWR+9BGxboV4EyJBGfR3RePV7Ksjj3rHmPZJeIt+7o4Vag== | ||
"ts-loader@^8.0.1 || ^9.0.0": | ||
version "9.2.2" | ||
resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-9.2.2.tgz#416333900621c82d5eb1b1f6dea4114111f096bf" | ||
integrity sha512-hNIhGTQHtNKjOzR2ZtQ2OSVbXPykOae+zostf1IlHCf61Mt41GMJurKNqrYUbzHgpmj6UWRu8eBfb7q0XliV0g== | ||
dependencies: | ||
chalk "^4.1.0" | ||
enhanced-resolve "^4.0.0" | ||
loader-utils "^2.0.0" | ||
enhanced-resolve "^5.0.0" | ||
micromatch "^4.0.0" | ||
semver "^7.3.4" | ||
|
||
|