@hyperz111/tsconfig 0.1.0 → 1.0.0

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
@@ -22,4 +22,4 @@ In `tsconfig.json`:
22
22
 
23
23
  ## Copyright
24
24
 
25
- Copyright © 2025-Present [Hyper-Z11](https://github.com/hyperz111/). Licensed under [MIT License](https://opensource.org/license/mit/).
25
+ [MIT](https://opensource.org/license/mit/)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyperz111/tsconfig",
3
- "version": "0.1.0",
3
+ "version": "1.0.0",
4
4
  "description": "Shared tsconfig.json file for @hyperz111",
5
5
  "exports": "./tsconfig.json",
6
6
  "publishConfig": {
@@ -27,7 +27,7 @@
27
27
  "homepage": "https://github.com/hyperz111/tsconfig#readme",
28
28
  "type": "module",
29
29
  "devDependencies": {
30
- "@hyperz111/prettier-config": "^0.1.1",
30
+ "@hyperz111/prettier-config": "^1.0.0",
31
31
  "prettier": "^3.6.2",
32
32
  "typescript": "^5.9.3"
33
33
  },
package/tsconfig.json CHANGED
@@ -1,7 +1,5 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "rootDir": "${configDir}/src",
4
- "outDir": "${configDir}/dist",
5
3
  "module": "nodenext",
6
4
  "target": "esnext",
7
5
  "lib": ["esnext"],
@@ -13,6 +11,5 @@
13
11
  "noUncheckedSideEffectImports": true,
14
12
  "moduleDetection": "force",
15
13
  "skipLibCheck": true
16
- },
17
- "include": ["${configDir}/src"]
14
+ }
18
15
  }