We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fcae51 commit 0f2c23bCopy full SHA for 0f2c23b
package.json
@@ -26,6 +26,7 @@
26
"name": "yiminghe"
27
}
28
],
29
+ "type": "commonjs",
30
"main": "./lib/index",
31
"browser": {
32
"./lib/index": "./dist/jszip.min.js",
tsconfig.json
@@ -7,6 +7,14 @@
7
"noEmit": true,
8
"esModuleInterop": true,
9
"forceConsistentCasingInFileNames": true,
10
+ "isolatedModules": true,
11
"strict": true,
12
+ "strictNullChecks": false, // temp, remove later on
13
+ "noImplicitOverride": true,
14
+ "noPropertyAccessFromIndexSignature": true,
15
+ "noUncheckedIndexedAccess": true,
16
+ "allowUnreachableCode": false,
17
+ "noUnusedLocals": true,
18
+ "noUnusedParameters": true
19
20
0 commit comments