@tammergard/tsconfig 2.2.0 → 2.3.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
@@ -14,7 +14,7 @@ npm install @tammergard/tsconfig --save-dev
14
14
  yarn add @tammergard/tsconfig --dev
15
15
 
16
16
  # pnpm
17
- pnpm install @tammergard/tsconfig --dev
17
+ pnpm add @tammergard/tsconfig --save-dev
18
18
  ```
19
19
 
20
20
  ## Usage
@@ -32,7 +32,7 @@ in `@tammergard/tsconfig` if it's defined there.
32
32
 
33
33
  ```json
34
34
  {
35
- "extends": "@tammergard/tsconfig/tsconfig.json",
35
+ "extends": "@tammergard/tsconfig",
36
36
  "compilerOptions": {
37
37
  "strict": false,
38
38
  "baseUrl": "./src"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tammergard/tsconfig",
3
- "version": "2.2.0",
3
+ "version": "2.3.0",
4
4
  "description": "A sharable TSconfig with personal preferences",
5
5
  "devDependencies": {
6
6
  "@changesets/cli": "2.26.1",
package/tsconfig.json CHANGED
@@ -18,7 +18,8 @@
18
18
  "allowJs": false,
19
19
 
20
20
  // interop constraints
21
- "esModuleInterop": true,
21
+ "allowSyntheticDefaultImports": true,
22
+ "esModuleInterop": false,
22
23
  "forceConsistentCasingInFileNames": true,
23
24
  "isolatedModules": true,
24
25