@adamhl8/configs 0.8.2 → 0.8.3
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/dist/tsconfig.json +3 -1
- package/package.json +1 -1
package/dist/tsconfig.json
CHANGED
|
@@ -8,8 +8,10 @@
|
|
|
8
8
|
"moduleDetection": "force",
|
|
9
9
|
"isolatedModules": true,
|
|
10
10
|
"verbatimModuleSyntax": true,
|
|
11
|
+
"esModuleInterop": false,
|
|
12
|
+
"allowSyntheticDefaultImports": false,
|
|
11
13
|
// Need to use '.js' extensions in packages until the following issue is resolved: https://github.com/microsoft/TypeScript/issues/61991
|
|
12
|
-
// For non-packages, we need to set 'noEmit' to true
|
|
14
|
+
// For non-packages, we need to set 'rewriteRelativeImportExtensions' to false and 'noEmit' to true
|
|
13
15
|
"allowImportingTsExtensions": true,
|
|
14
16
|
"rewriteRelativeImportExtensions": true,
|
|
15
17
|
"resolveJsonModule": true,
|