Skip to content

Commit 71ea328

Browse files
committed
we leave implicit any
2 parents a826b8a + 9a4f9c7 commit 71ea328

File tree

4 files changed

+37
-74
lines changed

4 files changed

+37
-74
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { someFunction } from 'solid-logic';
2727

2828
## Files
2929
- For browser UMD, without rdflib: `dist/solid-logic.js` (global `window.SolidLogic`)
30-
- For browser ESM, without rdflib: `dist/solid-logic.esm.external.js` (import as module)
30+
- For browser ESM, without rdflib: `dist/solid-logic.esm.js` (import as module)
3131
- UMD has also chunked files.
3232
- both versions also contain minified versions.
3333

package-lock.json

Lines changed: 33 additions & 70 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
],
2222
"scripts": {
2323
"clean": "rm -rf dist src/versionInfo.ts",
24-
"build": "npm run clean && npm run build-version && npm run build-js && npm run build-dist && npm run postbuild-js",
24+
"build": "npm run clean && npm run typecheck && run build-version && npm run build-js && npm run build-dist && npm run postbuild-js",
2525
"build-version": "./timestamp.sh > src/versionInfo.ts && eslint 'src/versionInfo.ts' --fix",
2626
"build-js": "tsc",
27-
"postbuild-js": "rm -f dist/versionInfo.d.ts dist/versionInfo.d.ts.map",
2827
"build-dist": "webpack --progress",
28+
"postbuild-js": "rm -f dist/versionInfo.d.ts dist/versionInfo.d.ts.map",
2929
"lint": "eslint",
3030
"typecheck": "tsc --noEmit",
3131
"typecheck-test": "tsc --noEmit -p tsconfig.test.json",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
/* Strict Type-Checking Options */
3333
"strict": false /* Enable all strict type-checking options. */,
34-
"noImplicitAny": true /* Raise error on expressions and declarations with an implied 'any' type. */,
34+
"noImplicitAny": false /* Raise error on expressions and declarations with an implied 'any' type. */,
3535
"strictNullChecks": true /* Enable strict null checks. */,
3636
"strictFunctionTypes": true /* Enable strict checking of function types. */,
3737
"strictBindCallApply": true /* Enable strict 'bind', 'call', and 'apply' methods on functions. */,

0 commit comments

Comments
 (0)