Skip to content

Commit 759cade

Browse files
authored
Merge pull request #382 from openmainframeproject/Developer
Added - Workflow dispatch event & changed ts config
2 parents f324428 + 4e73165 commit 759cade

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/DeployExtension.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
- 'main'
55
paths:
66
- 'vs-code-extension/**'
7+
8+
workflow_dispatch:
79

810
name: Deploy Extension
911
jobs:

vs-code-extension/tsconfig.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
22
"compilerOptions": {
3-
"module": "commonjs",
3+
"module": "Node16",
44
"target": "es2019",
55
"lib": ["ES2019"],
66
"outDir": "out",
77
"rootDir": "src",
8-
"sourceMap": true
8+
"sourceMap": true,
9+
"moduleResolution": "node16"
910
},
1011
"include": [
1112
"src"

0 commit comments

Comments
 (0)