@code-essentials/tsconfig 1.2.5 → 1.2.6

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.
package/README.md CHANGED
@@ -25,8 +25,8 @@ cp -r node_modules/@code-essentials/tsconfig/template/* .
25
25
  ```json
26
26
  {
27
27
  "clean": "rm -rf dist",
28
- "prebuild": "pnpm run clean",
29
- "prebuild:debug": "pnpm run clean",
28
+ "prebuild": "npm run clean",
29
+ "prebuild:debug": "npm run clean",
30
30
  "build": "tsc -p tsconfig.prod.json",
31
31
  "build:debug": "tsc -p tsconfig.debug.json",
32
32
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code-essentials/tsconfig",
3
- "version": "1.2.5",
3
+ "version": "1.2.6",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "files": [
@@ -13,6 +13,10 @@
13
13
  "bin": {
14
14
  "setup-tsconfig": "cli/setup.js"
15
15
  },
16
+ "scripts": {
17
+ "build": "",
18
+ "test": ""
19
+ },
16
20
  "peerDependencies": {
17
21
  "@tsconfig/node24": "^24.0.3",
18
22
  "@tsconfig/strictest": "^2.0.5"
@@ -30,9 +34,5 @@
30
34
  "repository": {
31
35
  "type": "git",
32
36
  "url": "https://github.com/code-essentials/tsconfig.git"
33
- },
34
- "scripts": {
35
- "build": "",
36
- "test": ""
37
37
  }
38
- }
38
+ }
@@ -5,5 +5,5 @@
5
5
  "rootDir": ".",
6
6
  },
7
7
  "include": ["src", "src/**/*.spec.ts", "test"],
8
- "exclude": ["node_modules"],
8
+ "exclude": ["node_modules", "dist"],
9
9
  }
@@ -5,5 +5,5 @@
5
5
  "rootDir": ".",
6
6
  },
7
7
  "include": ["src", "test"],
8
- "exclude": ["node_modules"],
8
+ "exclude": ["node_modules", "dist"],
9
9
  }
@@ -5,5 +5,5 @@
5
5
  "rootDir": "src",
6
6
  },
7
7
  "include": ["src"],
8
- "exclude": ["node_modules", "src/**/*.spec.ts", "test"],
8
+ "exclude": ["node_modules", "dist", "src/**/*.spec.ts", "test"],
9
9
  }
@@ -5,5 +5,5 @@
5
5
  "rootDir": ".",
6
6
  "lib": ["ESNext", "Decorators", "DOM"]
7
7
  },
8
- "exclude": ["node_modules"]
8
+ "exclude": ["node_modules", "dist"]
9
9
  }
package/tsconfig.json CHANGED
@@ -9,5 +9,5 @@
9
9
  "lib": ["ESNext", "Decorators", "DOM"],
10
10
  "moduleResolution": "nodenext",
11
11
  },
12
- "exclude": ["node_modules"]
12
+ "exclude": ["node_modules", "dist"]
13
13
  }
@@ -6,5 +6,5 @@
6
6
  // remove DOM
7
7
  "lib": ["ESNext", "Decorators"],
8
8
  },
9
- "exclude": ["node_modules", "test"]
9
+ "exclude": ["node_modules", "dist", "test"]
10
10
  }
package/LICENSE.md DELETED
@@ -1,21 +0,0 @@
1
- # Graph Mind License Agreement
2
-
3
- Copyright © 2025 Isaac Valdez. All Rights Reserved.
4
-
5
- 1. Ownership
6
- The source code and all associated intellectual property for the 'graph-math' project (hereinafter referred to as "the Software") are the exclusive private property of Isaac Valdez.
7
-
8
- 2. Permitted Use
9
- The Software may only be examined in source code form with explicit permission from Isaac Valdez. Individuals or entities wishing to review or utilize the source code must obtain this permission in writing.
10
-
11
- 3. End-User Licensing
12
- End users are permitted to run the Software on their local computer systems, provided such usage complies with a separate End-User License Agreement (EULA) that will be supplied to the end user.
13
-
14
- 4. License Modifications
15
- Isaac Valdez reserves the right to update or modify this license at any time. Changes will be effective upon modification of the license text and will apply to all users from that date onward.
16
-
17
- 5. No Warranty
18
- The Software is provided "as is," without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, or non-infringement.
19
-
20
- 6. Acceptance
21
- By using the Software, you indicate your acceptance of this license agreement. If you do not agree to abide by the terms of this agreement, you must refrain from using the Software.