Skip to content

Commit

Permalink
Add Meteor 3.1 and skipLibCheck for TS
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed Dec 12, 2024
1 parent 31b2e39 commit fa84ac1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion check-npm-versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const checkNpmVersions = (packages: indexAny, packageName: string): void
${errors.join('\n')}
Read more about installing npm peer dependencies:
http://guide.meteor.com/using-packages.html#peer-npm-dependencies
https://guide.meteor.com/using-packages.html#peer-npm-dependencies
`);
}
};
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Package.describe({
Npm.depends({ semver: '6.3.0' }); // 7.x versions are incompatible with Internet Explorer

Package.onUse(function (api) {
api.versionsFrom(['2.8.0', '3.0.1']);
api.versionsFrom(['2.8.0', '3.0.1', '3.1']);
api.use('typescript');
api.use('zodern:types@1.0.13');
api.mainModule('check-npm-versions.ts');
Expand Down
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@
"resolveJsonModule": true,
"types": ["node"],
"esModuleInterop": true,
"preserveSymlinks": true
"preserveSymlinks": true,
/* Skip checking node_modules types for now due to errors */
"skipLibCheck": true
},
"exclude": [
"./.meteor/**",
Expand Down

0 comments on commit fa84ac1

Please sign in to comment.