-
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.
Merge pull request #58 from adzerk/simonramzi/sc-49448/decision-sdk-n…
…ot-being-released Fixed Typescript Compiler Issue
- Loading branch information
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