From 9336e4b09205ceb8aad68aff8a243620bd0790a2 Mon Sep 17 00:00:00 2001 From: David Golightly Date: Thu, 9 Jun 2022 18:35:39 +0200 Subject: [PATCH] fix build --- package.json | 2 +- tsconfig.build.json | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 477eafec..37a98031 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ }, "scripts": { "prebuild": "yarn clean", - "build": "yarn lint && yarn format-check && tsc -b tsconfig.build.json && webpack && tsc -b tsconfig.build.json dist/esm/**/*.d.ts", + "build": "yarn lint && yarn format-check && tsc -b tsconfig.build.json && webpack && tsc dist/esm/**/*.d.ts", "clean": "rm -rf dist/", "lint": "yarn eslint . --fix --config .eslintrc.js", "format": "yarn prettier --write .", diff --git a/tsconfig.build.json b/tsconfig.build.json index da6d660d..d014c045 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -10,7 +10,6 @@ "moduleResolution": "node", "noEmitOnError": true, "target": "es5", - "strictNullChecks": true, "importHelpers": true, "esModuleInterop": true, "rootDirs": ["./src/"]