From 0e6e128313a0d7c7fd81233c37c34884e6c407dc Mon Sep 17 00:00:00 2001 From: Chris Trevino Date: Tue, 7 Sep 2021 12:28:58 -0700 Subject: [PATCH] Update tsconfig with noemit: true --- package.json | 5 +++-- tsconfig.json | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a32bc56..8046498 100644 --- a/package.json +++ b/package.json @@ -104,11 +104,12 @@ "typecheck": "tsc -b .", "bundle": "essex bundle --webpack", "assets": "ncp public build", - "ci": "run-s clean lint typecheck bundle assets", + "ci": "run-s clean lint typecheck bundle assets git_is_clean", "lint": "essex lint --strict", "lint:fix": "yarn lint --fix", "prettify": "essex prettify", - "deploy": "essex deploy --type azure-blob-storage --storageAccount $STORAGE_ACCOUNT --storageAccountKey $STORAGE_KEY --verbose" + "deploy": "essex deploy --type azure-blob-storage --storageAccount $STORAGE_ACCOUNT --storageAccountKey $STORAGE_KEY --verbose", + "git_is_clean": "essex git-is-clean" }, "browserslist": { "production": [ diff --git a/tsconfig.json b/tsconfig.json index 4d607d8..944c2b9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,6 +12,7 @@ "forceConsistentCasingInFileNames": true, "allowSyntheticDefaultImports": true, "noImplicitAny": false, + "noEmit": true, "jsx": "react", "skipLibCheck": true, "lib": ["esnext", "dom"],