isaacscript 4.7.1 → 4.7.3

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.
@@ -3,32 +3,12 @@
3
3
  "$schema": "https://raw.githubusercontent.com/complete-ts/complete/main/packages/complete-tsconfig/schemas/tsconfig-strict-schema.json",
4
4
 
5
5
  "extends": [
6
- // https://github.com/IsaacScript/isaacscript/blob/main/packages/isaacscript-tsconfig/tsconfig.base.json
7
- "isaacscript-tsconfig/tsconfig.base.json",
6
+ // https://github.com/complete-ts/complete/blob/main/packages/complete-tsconfig/tsconfig.base.json
7
+ "complete-tsconfig/tsconfig.base.json",
8
8
 
9
- // https://github.com/IsaacScript/isaacscript/blob/main/packages/isaacscript-tsconfig/tsconfig.node.json
10
- "isaacscript-tsconfig/tsconfig.node.json",
9
+ // https://github.com/complete-ts/complete/blob/main/packages/complete-tsconfig/tsconfig.node.json
10
+ "complete-tsconfig/tsconfig.node.json",
11
11
  ],
12
12
 
13
- // We want to lint every file in this directory. Two entries for each file extension are needed
14
- // because TypeScript will exclude files that begin with a period from an asterisk glob by
15
- // default.
16
- "include": [
17
- "./**/*.js",
18
- "./**/.*.js",
19
- "./**/*.cjs",
20
- "./**/.*.cjs",
21
- "./**/*.mjs",
22
- "./**/.*.mjs",
23
- "./**/*.jsx",
24
- "./**/.*.jsx",
25
- "./**/*.ts",
26
- "./**/.*.ts",
27
- "./**/*.cts",
28
- "./**/.*.cts",
29
- "./**/*.mts",
30
- "./**/.*.mts",
31
- "./**/*.tsx",
32
- "./**/.*.tsx",
33
- ],
13
+ "include": ["*.ts"],
34
14
  }
@@ -28,6 +28,7 @@
28
28
  "isaacscript",
29
29
  "lockb",
30
30
  "sarisia",
31
+ "tseslint",
31
32
  "Zamiell",
32
33
  ],
33
34
  }
@@ -1,7 +1,11 @@
1
1
  /** @type {import("knip").KnipConfig} */
2
2
  const config = {
3
3
  ignore: ["eslint.config.mjs", "prettier.config.mjs"],
4
- ignoreDependencies: ["complete-lint"],
4
+ ignoreDependencies: [
5
+ "complete-lint", // This is a linting meta-package.
6
+ "complete-node", // This is provided by "complete-lint".
7
+ ],
8
+ ignoreBinaries: ["tsx"], // This is provided by "complete-lint".
5
9
  };
6
10
 
7
11
  export default config;
@@ -1,4 +1,4 @@
1
- import { $s, buildScript } from "isaacscript-common-node";
1
+ import { $s, buildScript } from "complete-node";
2
2
 
3
3
  await buildScript(() => {
4
4
  $s`tsc`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript",
3
- "version": "4.7.1",
3
+ "version": "4.7.3",
4
4
  "description": "A command line tool for managing Isaac mods written in TypeScript.",
5
5
  "keywords": [
6
6
  "isaac",