@vinicius1313/tsconfig 2.0.0 → 3.0.1

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.
Files changed (3) hide show
  1. package/README.md +18 -1
  2. package/package.json +1 -2
  3. package/tsconfig.json +16 -5
package/README.md CHANGED
@@ -8,10 +8,27 @@ Install this library with:
8
8
 
9
9
  ```sh
10
10
  npm install -D @vinicius1313/tsconfig
11
- # or
11
+ ```
12
+
13
+ or
14
+
15
+ ```sh
16
+ pnpm add -D @vinicius1313/tsconfig
17
+ ```
18
+
19
+ or
20
+
21
+ ```sh
12
22
  yarn add -D @vinicius1313/tsconfig
13
23
  ```
14
24
 
25
+ ## Version compatibility
26
+
27
+ | Library version | TypeScript version |
28
+ |-----------------|--------------------|
29
+ | `>=3.0.0` | `>=6.0` |
30
+ | `<=2.0.0` | `<6.0` |
31
+
15
32
  ## Usage
16
33
 
17
34
  Edit your `tsconfig.json` file to extend this library:
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "@vinicius1313/tsconfig",
3
3
  "description": "TypeScript configuration",
4
- "version": "2.0.0",
4
+ "version": "3.0.1",
5
5
  "license": "MIT",
6
6
  "main": "tsconfig.json",
7
7
  "files": [
8
- "README.md",
9
8
  "tsconfig.json"
10
9
  ],
11
10
  "author": "Vinicius Yoshioka <71671043+viniciusyoshioka@users.noreply.github.com> (https://github.com/viniciusyoshioka)",
package/tsconfig.json CHANGED
@@ -68,7 +68,7 @@
68
68
  "outDir": "./dist/module",
69
69
  "removeComments": true,
70
70
  "importHelpers": true,
71
- "downlevelIteration": true,
71
+ // "downlevelIteration": true,
72
72
  // "sourceRoot": "",
73
73
  // "mapRoot": "",
74
74
  // "inlineSources": true,
@@ -101,22 +101,27 @@
101
101
  // "noImplicitThis": true,
102
102
  // "useUnknownInCatchVariables": true,
103
103
  // "alwaysStrict": true,
104
- // "noUnusedLocals": true,
105
- // "noUnusedParameters": true,
104
+ "noUnusedLocals": true,
105
+ "noUnusedParameters": true,
106
106
  // "exactOptionalPropertyTypes": true,
107
107
  "noImplicitReturns": true,
108
108
  "noFallthroughCasesInSwitch": true,
109
109
  // "noUncheckedIndexedAccess": true,
110
110
  "noImplicitOverride": true,
111
111
  "noPropertyAccessFromIndexSignature": true,
112
- // "allowUnusedLabels": true,
113
- "allowUnreachableCode": true,
112
+ "allowUnusedLabels": false,
113
+ "allowUnreachableCode": false,
114
114
 
115
115
  /* Backwards Compatibility */
116
+ // "charset": "utf8",
116
117
  // "noImplicitUseStrict": true,
117
118
  // "noStrictGenericChecks": true,
118
119
  // "suppressExcessPropertyErrors": true,
119
120
  // "suppressImplicitAnyIndexErrors": true,
121
+ // "importsNotUsedAsValues": "remove",
122
+ // "keyofStringsOnly": false,
123
+ // "out": "dist",
124
+ // "preserveValueImports": false,
120
125
 
121
126
  /* Compiler Diagnostics */
122
127
  // "diagnostics": true,
@@ -139,5 +144,11 @@
139
144
  /* Completeness */
140
145
  // "skipDefaultLibCheck": true,
141
146
  "skipLibCheck": true
147
+
148
+ /* Watch mode */
149
+ // "watch": null,
150
+ // "watchFile": "useFsEvents",
151
+ // "watchDirectory": "useFsEvents",
152
+ // "fallbackPolling": "dynamicPriorityPolling"
142
153
  }
143
154
  }