@timobechtel/style 1.6.0 → 1.8.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
@@ -7,7 +7,7 @@ Highly opinionated configuration files for typescript projects. Inspired by [@ve
7
7
  ## Usage
8
8
 
9
9
  ```bash
10
- npm i -D @timobechtel/style prettier eslint typescript
10
+ npm i -D @timobechtel/style prettier "eslint@^8.57.0" typescript
11
11
  ```
12
12
 
13
13
  ### Prettier
@@ -89,7 +89,7 @@ Add the following to your VSCode config, e.g. `.vscode/settings.json`
89
89
  {
90
90
  "editor.codeActionsOnSave": {
91
91
  // use eslint import/order instead
92
- "source.organizeImports": false
92
+ "source.organizeImports": "never"
93
93
  }
94
94
  }
95
95
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timobechtel/style",
3
- "version": "1.6.0",
3
+ "version": "1.8.0",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "bin",
@@ -9,10 +9,11 @@
9
9
  "forceConsistentCasingInFileNames": true,
10
10
  "inlineSources": false,
11
11
  "isolatedModules": true,
12
- "moduleResolution": "node",
12
+ "moduleResolution": "NodeNext",
13
13
  "noUnusedLocals": false,
14
14
  "noUnusedParameters": false,
15
15
  "noImplicitAny": true,
16
+ "noUncheckedIndexedAccess": true,
16
17
  "preserveWatchOutput": true,
17
18
  "skipLibCheck": true,
18
19
  "strict": true,