@kurone-kito/typescript-config 0.18.0-alpha.4 → 0.18.0-alpha.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
@@ -9,8 +9,7 @@ First, install this package and its peer dependencies:
9
9
  ```sh
10
10
  npm install --save-dev \
11
11
  @kurone-kito/typescript-config \
12
- typescript \
13
- typescript-eslint-language-service
12
+ typescript
14
13
  ```
15
14
 
16
15
  Then, create a `tsconfig.json` file.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kurone-kito/typescript-config",
3
- "version": "0.18.0-alpha.4",
3
+ "version": "0.18.0-alpha.6",
4
4
  "description": "My TypeScript configuration for general projects",
5
5
  "keywords": [
6
6
  "config",
@@ -27,26 +27,16 @@
27
27
  "tsconfig.json"
28
28
  ],
29
29
  "devDependencies": {
30
- "@typescript-eslint/parser": "^8.32.0",
31
30
  "cpy-cli": "^5.0.0",
32
- "eslint": "^9.26.0",
33
- "typescript": "~5.8.3",
34
- "typescript-eslint-language-service": "^5.0.5"
31
+ "rimraf": "^6.0.1",
32
+ "typescript": "~5.8.3"
35
33
  },
36
34
  "peerDependencies": {
37
- "@typescript-eslint/parser": ">=8.x.x",
38
- "typescript": ">=5.x.x",
39
- "typescript-eslint-language-service": ">=5.x.x"
35
+ "typescript": ">=5.x.x"
40
36
  },
41
37
  "peerDependenciesMeta": {
42
- "@typescript-eslint/parser": {
43
- "optional": true
44
- },
45
38
  "typescript": {
46
39
  "optional": true
47
- },
48
- "typescript-eslint-language-service": {
49
- "optional": true
50
40
  }
51
41
  },
52
42
  "engines": {
package/tsconfig.json CHANGED
@@ -21,11 +21,6 @@
21
21
  "noUncheckedIndexedAccess": true,
22
22
  "noUnusedLocals": true,
23
23
  "noUnusedParameters": true,
24
- "plugins": [
25
- {
26
- "name": "typescript-eslint-language-service"
27
- }
28
- ],
29
24
  "preserveWatchOutput": true,
30
25
  "resolveJsonModule": true,
31
26
  "sourceMap": true,