Skip to content

Commit eb75a86

Browse files
committed
remove unnecessary ts-node that keeps breaking
1 parent 7045c88 commit eb75a86

File tree

12 files changed

+3
-25
lines changed

12 files changed

+3
-25
lines changed

dev-packages/e2e-tests/test-applications/sveltekit-2/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
"@sveltejs/vite-plugin-svelte": "^3.0.0",
2929
"svelte": "^4.2.8",
3030
"svelte-check": "^3.6.0",
31-
"ts-node": "10.9.1",
3231
"typescript": "^5.0.0",
3332
"vite": "^5.0.3",
3433
"wait-port": "1.0.4"

dev-packages/e2e-tests/test-applications/sveltekit-2/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const config: PlaywrightTestConfig = {
6262
/* Run your local dev server before starting the tests */
6363
webServer: [
6464
{
65-
command: 'pnpm ts-node-script start-event-proxy.ts',
65+
command: 'node start-event-proxy.mjs',
6666
port: eventProxyPort,
6767
reuseExistingServer: false,
6868
},

dev-packages/e2e-tests/test-applications/sveltekit-2/tsconfig.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@
99
"sourceMap": true,
1010
"strict": true,
1111
"allowImportingTsExtensions": true
12-
},
13-
"ts-node": {
14-
"esm": true,
15-
"experimentalSpecifierResolution": "node"
1612
}
1713
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
1814
//

dev-packages/e2e-tests/test-applications/sveltekit/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
"@sveltejs/kit": "1.20.5",
2727
"svelte": "^3.54.0",
2828
"svelte-check": "^3.0.1",
29-
"ts-node": "10.9.1",
3029
"typescript": "^5.0.0",
3130
"vite": "^4.2.0",
3231
"wait-port": "1.0.4"

dev-packages/e2e-tests/test-applications/sveltekit/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const config: PlaywrightTestConfig = {
5757
/* Run your local dev server before starting the tests */
5858
webServer: [
5959
{
60-
command: 'pnpm ts-node --esm start-event-proxy.ts',
60+
command: 'node start-event-proxy.mjs',
6161
port: 3031,
6262
},
6363
{

dev-packages/e2e-tests/test-applications/sveltekit/tsconfig.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@
99
"sourceMap": true,
1010
"strict": true,
1111
"allowImportingTsExtensions": true
12-
},
13-
"ts-node": {
14-
"esm": true,
15-
"experimentalSpecifierResolution": "node"
1612
}
1713
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
1814
//

dev-packages/e2e-tests/test-applications/vue-3/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
"@vue/tsconfig": "^0.5.1",
3232
"http-server": "^14.1.1",
3333
"npm-run-all2": "^6.1.1",
34-
"ts-node": "10.9.1",
3534
"typescript": "~5.3.0",
3635
"vite": "^5.0.11",
3736
"vue-tsc": "^1.8.27",

dev-packages/e2e-tests/test-applications/vue-3/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const config: PlaywrightTestConfig = {
6161
/* Run your local dev server before starting the tests */
6262
webServer: [
6363
{
64-
command: 'pnpm ts-node-script --project tsconfig.proxy.json start-event-proxy.ts',
64+
command: 'node start-event-proxy.mjs',
6565
port: eventProxyPort,
6666
},
6767
{

0 commit comments

Comments
 (0)