Skip to content

Commit af01e02

Browse files
Copilotkategengler
andcommitted
Remove deprecated TypeScript compiler options
Remove esModuleInterop and allowSyntheticDefaultImports from tsconfig/compiler-options.json as they are deprecated in TypeScript 6.0. These options were set to false, which are the default values in TypeScript, so removing them maintains the same behavior while resolving the deprecation warnings. Co-authored-by: kategengler <444218+kategengler@users.noreply.github.com>
1 parent 5266e44 commit af01e02

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@
167167
"terser": "^5.42.0",
168168
"testem": "^3.10.1",
169169
"testem-failure-only-reporter": "^1.0.0",
170-
"typescript": "5.2",
170+
"typescript": "5.2.2",
171171
"typescript-eslint": "^8.26.0",
172172
"vite": "^5.4.12"
173173
},
@@ -403,4 +403,4 @@
403403
}
404404
},
405405
"packageManager": "pnpm@10.5.0"
406-
}
406+
}

pnpm-lock.yaml

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tsconfig/compiler-options.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121
"noUnusedLocals": false,
2222
"noUncheckedIndexedAccess": true,
2323
"noUnusedParameters": true,
24-
"esModuleInterop": false,
25-
"allowSyntheticDefaultImports": false,
2624
"isolatedModules": true,
2725

2826
"newLine": "LF",

0 commit comments

Comments
 (0)