Skip to content

Commit 4473018

Browse files
authored
Merge pull request #12 from AutomateThePlanet/decorators-update
Updated decorators to the ecmascript standard ones in TS5
2 parents 999188f + c71bdaa commit 4473018

File tree

100 files changed

+5326
-15420
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+5326
-15420
lines changed

.vscode/launch.json

Lines changed: 31 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{
55
"type": "node",
66
"request": "launch",
7-
"name": "Run Tests",
7+
"name": "example: debug main process",
88
"runtimeExecutable": "npm",
99
"runtimeArgs": [
1010
"run",
@@ -15,7 +15,35 @@
1515
],
1616
"cwd": "${workspaceFolder}/example",
1717
"console": "integratedTerminal",
18-
"internalConsoleOptions": "neverOpen"
18+
"internalConsoleOptions": "neverOpen",
19+
"presentation": {
20+
"hidden": true
21+
},
22+
},
23+
{
24+
"type": "node",
25+
"request": "attach",
26+
"name": "try debug child process",
27+
"port": 12016,
28+
"skipFiles": [
29+
"<node_internals>/**"
30+
],
31+
"timeout": 5000,
32+
"restart": false,
33+
"presentation": {
34+
"hidden": true
35+
},
36+
},
37+
],
38+
"compounds": [
39+
{
40+
"name": "(example) debug tests",
41+
"configurations": ["example: debug main process", "try debug child process"],
42+
"presentation": {
43+
"hidden": false,
44+
"group": "",
45+
"order": 1
46+
},
1947
}
2048
]
21-
}
49+
}

@bellatrix/appium/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
"selenium-webdriver": "^4.16.0"
2222
},
2323
"peerDependencies": {
24-
"typescript": "^5.0.0"
24+
"typescript": "^5.7.3"
2525
}
2626
}

@bellatrix/appium/tsconfig.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
"moduleResolution": "bundler",
1010
"moduleDetection": "force",
1111
"noImplicitOverride": true,
12-
"experimentalDecorators": true,
13-
"emitDecoratorMetadata": true,
12+
"experimentalDecorators": false,
13+
"emitDecoratorMetadata": false,
14+
"useDefineForClassFields": true,
1415
"composite": true,
1516
"sourceMap": true,
1617
"strict": true,

0 commit comments

Comments
 (0)