Skip to content

Commit 83f92d0

Browse files
chore: update typescript compiler target
1 parent 8d0e87a commit 83f92d0

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

src/lib/application/files/ts/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"emitDecoratorMetadata": true,
77
"experimentalDecorators": true,
88
"allowSyntheticDefaultImports": true,
9-
"target": "ES2021",
9+
"target": "ES2023",
1010
"sourceMap": true,
1111
"outDir": "./dist",
1212
"baseUrl": "./",

src/lib/library/files/js/jsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"compilerOptions": {
3-
"target": "ES2021",
3+
"target": "ES2023",
44
"experimentalDecorators": true
55
},
66
"exclude": [

src/lib/sub-app/files/js/jsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"compilerOptions": {
3-
"target": "ES2021",
3+
"target": "ES2023",
44
"experimentalDecorators": true
55
},
66
"exclude": [

src/lib/sub-app/workspace/js/jsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"compilerOptions": {
3-
"target": "ES2021",
3+
"target": "ES2023",
44
"experimentalDecorators": true
55
},
66
"exclude": [

tools/gulp/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"noImplicitThis": true,
1313
"noEmitOnError": true,
1414
"noImplicitAny": false,
15-
"target": "ES2021",
15+
"target": "ES2023",
1616
"types": [
1717
"node"
1818
],

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"module": "commonjs",
4-
"target": "ES2021",
4+
"target": "ES2023",
55
"typeRoots": ["node_modules/@types"],
66
"outDir": "dist",
77
"declaration": true,

tsconfig.lib.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"module": "commonjs",
4-
"target": "ES2021",
4+
"target": "ES2023",
55
"typeRoots": ["node_modules/@types"],
66
"outDir": "dist",
77
"declaration": true,

0 commit comments

Comments
 (0)