Fix(UI): Type error in vite config for ui core components (#23718)

* Update the tsconfig.json for core component

* Fix json type check

* update the module resolution to nodenext
This commit is contained in:
Aniket Katkar 2025-10-06 10:50:16 +05:30 committed by GitHub
parent adada34284
commit b6d4cb72a1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,12 +2,12 @@
"compilerOptions": {
"target": "ES5",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "esnext",
"module": "nodenext",
"skipLibCheck": true,
"allowJs": false,
"strict": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"moduleResolution": "nodenext",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": false,