Skip to content

Commit 37f6367

Browse files
wow it is building
1 parent 20f5552 commit 37f6367

File tree

6 files changed

+12
-5
lines changed

6 files changed

+12
-5
lines changed

packages/app/tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"../frontend-shared/src/**/*.tsx",
1212
"../frontend-shared/cypress/**/*.ts"
1313
],
14+
"target": "ES2022",
1415
"compilerOptions": {
1516
"noImplicitThis": true,
1617
"paths": {

packages/app/vite.config.mjs

+7-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,13 @@ export default makeConfig({
2020
'@popperjs/core',
2121
'@opentelemetry/*',
2222
],
23+
esbuildOptions: {
24+
target: "ES2022"
25+
}
2326
},
27+
build: {
28+
target: "ES2022"
29+
}
2430
}, {
2531
plugins: [
2632
Layouts(),
@@ -32,7 +38,7 @@ export default makeConfig({
3238
}],
3339
}),
3440
Legacy({
35-
targets: ['Chrome >= 80', 'Firefox >= 86', 'Edge >= 80'],
41+
targets: ['last 3 major versions'],
3642
modernPolyfills: true,
3743
renderLegacyChunks: false,
3844
}),

packages/driver/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "./../ts/tsconfig.json",
33
"compilerOptions": {
4-
"target": "ES2016",
4+
"target": "ES2017",
55
"lib": ["ES2021", "DOM", "DOM.Iterable"],
66
"noImplicitThis": false,
77
"preserveWatchOutput": true,

packages/extension/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../ts/tsconfig.json",
33
"compilerOptions": {
4-
"target": "es2015",
4+
"target": "es2017",
55
"strict": false
66
}
77
}

packages/runner/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../ts/tsconfig.json",
33
"compilerOptions": {
4-
"target": "es2015",
4+
"target": "es2017",
55
"jsx": "react",
66
"outDir": "dist",
77
"noImplicitThis": false,

packages/web-config/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
/* Basic Options */
4-
"target": "es2015",
4+
"target": "es2017",
55
"module": "commonjs",
66
/*
77
* Allow javascript files to be compiled.

0 commit comments

Comments
 (0)