Skip to content

Commit

Permalink
skipLibCheck for examples/cluster (#1260)
Browse files Browse the repository at this point in the history
<!--Thanks for your contribution. See [CONTRIBUTING](CONTRIBUTING.md)
    for Pulumi's contribution guidelines.

    Help us merge your changes more quickly by adding more details such
    as labels, milestones, and reviewers.-->

### Proposed changes

<!--Give us a brief description of what you've done and what it solves.
-->

This change instructs TypeScript to avoid re-checking node_modules
(dependencies) in the examples/cluster.

### Related issues (optional)

This partially addresses
#1258

<!--Refer to related PRs or issues: #1234, or 'Fixes #1234' or 'Closes
#1234'.
Or link to full URLs to issues or pull requests in other GitHub
repositories. -->
  • Loading branch information
t0yv0 authored Jul 17, 2024
1 parent 0befc8d commit 3a07e3c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/cluster/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"noImplicitAny": true,
"noImplicitReturns": true,
"forceConsistentCasingInFileNames": true,
"strictNullChecks": true
"strictNullChecks": true,
"skipLibCheck": true
},
"files": [
"index.ts"
Expand Down

0 comments on commit 3a07e3c

Please sign in to comment.