Skip to content

Commit

Permalink
workflow action
Browse files Browse the repository at this point in the history
  • Loading branch information
elizeuangelo committed Sep 12, 2024
1 parent 2ae360d commit 3534588
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Install TypeScript and Compile
run: |
npm install -g typescript
tsc --skipLibCheck
tsc
- name: Get the version
id: get_version
Expand Down
29 changes: 18 additions & 11 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
{
"compilerOptions": {
"types": ["@league-of-foundry-developers/foundry-vtt-types"],
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"target": "ES2022",
"module": "ES2022",
//"strict": true,
"strictNullChecks": true,
"alwaysStrict": true,
"removeComments": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"types": [
"@league-of-foundry-developers/foundry-vtt-types"
],
"lib": [
"ES2022",
"DOM",
"DOM.Iterable"
],
"target": "ES2022",
"module": "ES2022",
//"strict": true,
"strictNullChecks": true,
"alwaysStrict": true,
"removeComments": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
},
}

0 comments on commit 3534588

Please sign in to comment.