Skip to content

Commit

Permalink
Merge pull request #1991 from romainbrancourt/update-ts-compiler-target
Browse files Browse the repository at this point in the history
chore: update typescript compiler target to ES2023
  • Loading branch information
kamilmysliwiec authored Feb 17, 2025
2 parents f2eb538 + 83f92d0 commit 0afab32
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/lib/application/files/ts/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"target": "ES2023",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/library/files/js/jsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "ES2021",
"target": "ES2023",
"experimentalDecorators": true
},
"exclude": [
Expand Down
2 changes: 1 addition & 1 deletion src/lib/sub-app/files/js/jsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "ES2021",
"target": "ES2023",
"experimentalDecorators": true
},
"exclude": [
Expand Down
2 changes: 1 addition & 1 deletion src/lib/sub-app/workspace/js/jsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "ES2021",
"target": "ES2023",
"experimentalDecorators": true
},
"exclude": [
Expand Down
2 changes: 1 addition & 1 deletion tools/gulp/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"noImplicitThis": true,
"noEmitOnError": true,
"noImplicitAny": false,
"target": "ES2021",
"target": "ES2023",
"types": [
"node"
],
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2021",
"target": "ES2023",
"typeRoots": ["node_modules/@types"],
"outDir": "dist",
"declaration": true,
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.lib.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2021",
"target": "ES2023",
"typeRoots": ["node_modules/@types"],
"outDir": "dist",
"declaration": true,
Expand Down

0 comments on commit 0afab32

Please sign in to comment.