-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed Typescript compiler issue from breaking change from
5.1.x
to …
…`5.2.x`.
- Loading branch information
Simon Ramzi
committed
Aug 29, 2023
1 parent
6268381
commit 232446c
Showing
2 changed files
with
30 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,15 +44,15 @@ jobs: | |
- id: db6068b8-f5ed-4968-847e-b642595243fd | ||
name: Install Typescript Compiler Globally | ||
run: | | ||
npm install --global [email protected] | ||
npm install --global typescript@5.2.x | ||
tsc --version | ||
- id: e842d27d-141c-47f2-b64c-2c5702984edf | ||
name: Compile Package | ||
working-directory: ${{ env.WORKINGDIRECTORY_DECISION }} | ||
run: | | ||
tsc --outDir dist --declaration --target es5 --moduleResolution nodenext --lib es6,dom --showConfig *.ts | ||
tsc --outDir dist --declaration --target es5 --moduleResolution nodenext --lib es6,dom *.ts | ||
tsc --outDir dist --declaration --target es5 --module nodenext --moduleResolution nodenext --lib es6,dom --showConfig *.ts | ||
tsc --outDir dist --declaration --target es5 --module nodenext --moduleResolution nodenext --lib es6,dom *.ts | ||
- id: edd89b5d-54fa-4951-8206-54b1cef91968 | ||
name: Configure Project-Level .npmrc File | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters