@temboplus/tsconfig 0.1.0 → 0.1.2

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
@@ -42,6 +42,7 @@ Extend the desired config in your `tsconfig.json` or project-specific config fil
42
42
  "$schema": "https://json.schemastore.org/tsconfig",
43
43
  "extends": ["@temboplus/tsconfig/base.json"],
44
44
  // overrides + other configurations
45
+ "exclude": ["**/dist", "**/node_modules"],
45
46
  }
46
47
  ```
47
48
 
@@ -55,6 +56,14 @@ Extend the desired config in your `tsconfig.json` or project-specific config fil
55
56
  "$schema": "https://json.schemastore.org/tsconfig",
56
57
  "extends": ["@temboplus/tsconfig/build.json"],
57
58
  // overrides + other configurations
59
+ "include": ["src"],
60
+ "exclude": [
61
+ "**/dist",
62
+ "**/node_modules",
63
+ "**/test",
64
+ "**/*spec.ts",
65
+ "**/*test.ts",
66
+ ],
58
67
  }
59
68
  ```
60
69
 
@@ -66,6 +75,14 @@ Extend the desired config in your `tsconfig.json` or project-specific config fil
66
75
  "$schema": "https://json.schemastore.org/tsconfig",
67
76
  "extends": ["@temboplus/tsconfig/cjs.json"],
68
77
  // overrides + other configurations
78
+ "include": ["src"],
79
+ "exclude": [
80
+ "**/dist",
81
+ "**/node_modules",
82
+ "**/test",
83
+ "**/*spec.ts",
84
+ "**/*test.ts",
85
+ ],
69
86
  }
70
87
  ```
71
88
 
@@ -77,6 +94,14 @@ Extend the desired config in your `tsconfig.json` or project-specific config fil
77
94
  "$schema": "https://json.schemastore.org/tsconfig",
78
95
  "extends": ["@temboplus/tsconfig/esm.json"],
79
96
  // overrides + other configurations
97
+ "include": ["src"],
98
+ "exclude": [
99
+ "**/dist",
100
+ "**/node_modules",
101
+ "**/test",
102
+ "**/*spec.ts",
103
+ "**/*test.ts",
104
+ ],
80
105
  }
81
106
  ```
82
107
 
@@ -88,6 +113,14 @@ Extend the desired config in your `tsconfig.json` or project-specific config fil
88
113
  "$schema": "https://json.schemastore.org/tsconfig",
89
114
  "extends": ["@temboplus/tsconfig/types.json"],
90
115
  // overrides + other configurations
116
+ "include": ["src"],
117
+ "exclude": [
118
+ "**/dist",
119
+ "**/node_modules",
120
+ "**/test",
121
+ "**/*spec.ts",
122
+ "**/*test.ts",
123
+ ],
91
124
  }
92
125
  ```
93
126
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@temboplus/tsconfig",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Base TypeScript configuration files for TemboPlus applications and packages",
5
5
  "files": [
6
6
  "tsconfig.base.json",
@@ -33,6 +33,8 @@
33
33
  "commit:lint": "npx commitlint --last --verbose",
34
34
  "deps:check": "ncu",
35
35
  "deps:fix": "ncu -u --install always",
36
+ "deps:fix:minor": "ncu -u -t minor --install always",
37
+ "deps:fix:patch": "ncu -u -t patch --install always",
36
38
  "fix": "npm-run-all format:fix lint:fix",
37
39
  "format:check": "npm-run-all format:check:*",
38
40
  "format:check:js": "prettier --check \"./**/*.{js,mjs}\"",
@@ -114,38 +116,40 @@
114
116
  },
115
117
  "dependencies": {
116
118
  "@tsconfig/node22": ">=22.0.2",
117
- "@tsconfig/recommended": ">=1.0.8",
119
+ "@tsconfig/recommended": ">=1.0.10",
118
120
  "@tsconfig/strictest": ">=2.0.5",
119
121
  "tslib": ">=2.8.1"
120
122
  },
121
123
  "devDependencies": {
122
124
  "@commitlint/cli": "^19.8.1",
123
125
  "@commitlint/config-conventional": "^19.8.1",
124
- "@eslint/markdown": "^6.4.0",
125
- "@jest/globals": "^29.7.0",
126
+ "@eslint/markdown": "^7.1.0",
127
+ "@jest/globals": "^30.0.5",
126
128
  "@release-it/conventional-changelog": "^10.0.1",
127
- "@vitest/coverage-v8": "^3.2.0",
128
- "cspell": "^9.0.2",
129
- "eslint": "^9.28.0",
129
+ "@vitest/coverage-v8": "^3.2.4",
130
+ "cspell": "^9.2.0",
131
+ "eslint": "^9.32.0",
130
132
  "eslint-config-flat-gitignore": "^2.1.0",
131
- "eslint-config-prettier": "^10.1.5",
132
- "eslint-plugin-jsdoc": "^50.7.1",
133
+ "eslint-config-prettier": "^10.1.8",
134
+ "eslint-plugin-import-x": "^4.16.1",
135
+ "eslint-plugin-jsdoc": "^52.0.0",
133
136
  "eslint-plugin-jsonc": "^2.20.1",
134
- "eslint-plugin-perfectionist": "^4.13.0",
135
- "eslint-plugin-prettier": "^5.4.1",
136
- "eslint-plugin-unicorn": "^59.0.1",
137
+ "eslint-plugin-perfectionist": "^4.15.0",
138
+ "eslint-plugin-prettier": "^5.5.3",
139
+ "eslint-plugin-unicorn": "^60.0.0",
137
140
  "eslint-plugin-yml": "^1.18.0",
138
141
  "husky": "^9.1.7",
139
- "jest": "^29.7.0",
140
- "npm-check-updates": "^18.0.1",
142
+ "jest": "^30.0.5",
143
+ "npm-check-updates": "^18.0.2",
141
144
  "npm-run-all": "^4.1.5",
142
- "prettier": "^3.5.3",
143
- "release-it": "^19.0.3",
145
+ "prettier": "^3.6.2",
146
+ "release-it": "^19.0.4",
144
147
  "rimraf": "^6.0.1",
145
- "ts-jest": "^29.3.4",
148
+ "ts-jest": "^29.4.0",
146
149
  "ts-node": "^10.9.2",
147
150
  "typescript": "^5.8.3",
148
- "vitest": "^3.2.0"
151
+ "typescript-eslint": "^8.38.0",
152
+ "vitest": "^3.2.4"
149
153
  },
150
154
  "publishConfig": {
151
155
  "access": "public"
@@ -22,13 +22,5 @@
22
22
  "strict": true,
23
23
  "target": "ESNext",
24
24
  "useDefineForClassFields": true
25
- },
26
- "exclude": [
27
- "**/build",
28
- "**/coverage",
29
- "**/dist",
30
- "**/docs",
31
- "**/node_modules",
32
- "**/out"
33
- ]
25
+ }
34
26
  }
@@ -16,17 +16,5 @@
16
16
  "sourceMap": true,
17
17
  "stripInternal": true
18
18
  },
19
- "include": ["src"],
20
- "exclude": [
21
- "**/build",
22
- "**/coverage",
23
- "**/dist",
24
- "**/docs",
25
- "**/node_modules",
26
- "**/out",
27
- "**/scripts",
28
- "**/test",
29
- "**/*spec.ts",
30
- "**/*test.ts"
31
- ]
19
+ "include": ["src"]
32
20
  }