isaacscript 4.7.3 → 4.7.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,8 +4,11 @@ const config = {
4
4
  ignoreDependencies: [
5
5
  "complete-lint", // This is a linting meta-package.
6
6
  "complete-node", // This is provided by "complete-lint".
7
+ "complete-tsconfig", // This is provided by "complete-lint".
8
+ ],
9
+ ignoreBinaries: [
10
+ "tsx", // This is provided by "complete-lint".
7
11
  ],
8
- ignoreBinaries: ["tsx"], // This is provided by "complete-lint".
9
12
  };
10
13
 
11
14
  export default config;
@@ -4,6 +4,7 @@ await lintScript(async () => {
4
4
  const promises = [
5
5
  // Use TypeScript to type-check the code.
6
6
  $`tsc --noEmit`,
7
+ $`tsc --noEmit --project ./scripts/tsconfig.json`,
7
8
 
8
9
  // Use ESLint to lint the TypeScript code.
9
10
  // - "--max-warnings 0" makes warnings fail, since we set all ESLint errors to warnings.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript",
3
- "version": "4.7.3",
3
+ "version": "4.7.5",
4
4
  "description": "A command line tool for managing Isaac mods written in TypeScript.",
5
5
  "keywords": [
6
6
  "isaac",