Skip to content

Commit 20bb407

Browse files
committed
chore(typescript): ignoreDeprecations 6.0 pour baseUrl
TS 6 déprécie baseUrl mais le supporte encore jusqu'à TS 7. On garde le pattern actuel et on documentera une vraie migration plus tard.
1 parent f4d7380 commit 20bb407

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

tsconfig.app.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"erasableSyntaxOnly": true,
1919
"noFallthroughCasesInSwitch": true,
2020
"noUncheckedSideEffectImports": true,
21+
"ignoreDeprecations": "6.0",
2122
"baseUrl": ".",
2223
"paths": {
2324
"@/*": ["src/*"],

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"noUnusedParameters": true,
1717
"noFallthroughCasesInSwitch": true,
1818
"types": ["vitest/globals", "@testing-library/jest-dom"],
19+
"ignoreDeprecations": "6.0",
1920
"baseUrl": ".",
2021
"paths": {
2122
"@/*": ["src/*"],

0 commit comments

Comments
 (0)