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/
|
|
7
|
-
"
|
|
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/
|
|
10
|
-
"
|
|
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
|
-
|
|
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
|
}
|
|
@@ -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: [
|
|
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;
|