Skip to content

Commit

Permalink
Merge pull request #2744 from epam/update_ts_target
Browse files Browse the repository at this point in the history
Update TS target
  • Loading branch information
AlekseyManetov authored Jan 22, 2025
2 parents 0bbe045 + 26367bc commit 00e4b6e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/src/data/codesandbox/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "es6",
"target": "ES2021",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
Expand Down
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# 5.xx.xx - xx.xx.2024
**What's New**
* Update UUI packages JS target from ES6 to ES2021
* [MainMenuAvatar]: added `RawProps` prop
* [CountIndicator]: text size increased for prop 'size' 12px from 8px to 10px
* [DropdownMenuBody]: added `maxHeight` prop
Expand Down
2 changes: 1 addition & 1 deletion next-demo/next-app/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"target": "es6",
"target": "ES2021",
"declaration": false,
"declarationMap": false,
"noImplicitAny": true,
Expand Down
2 changes: 1 addition & 1 deletion next-demo/next-pages/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"target": "es6",
"target": "ES2021",
"declaration": false,
"declarationMap": false,
"noImplicitAny": true,
Expand Down
2 changes: 1 addition & 1 deletion templates/uui-nextjs-template/template/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"rootDir": ".",
"target": "es6",
"target": "ES2021",
"lib": [
"dom",
"dom.iterable",
Expand Down
2 changes: 1 addition & 1 deletion templates/uui-vite-template/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"strict": true,
"strictNullChecks": false,
"skipLibCheck": true,
"target": "ES6",
"target": "ES2021",
"rootDir": ".",
"types": [
"vitest/globals",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"module": "ES2022",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"target": "ES6",
"target": "ES2021",
"declaration": false,
"declarationMap": false,
"noImplicitAny": true,
Expand Down

0 comments on commit 00e4b6e

Please sign in to comment.