Update tsconfig with noemit: true

This commit is contained in:
Chris Trevino 2021-09-07 12:28:58 -07:00
Родитель 794052e49b
Коммит 0e6e128313
2 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -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": [

Просмотреть файл

@ -12,6 +12,7 @@
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": false,
"noEmit": true,
"jsx": "react",
"skipLibCheck": true,
"lib": ["esnext", "dom"],