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 .", "typecheck": "tsc -b .",
"bundle": "essex bundle --webpack", "bundle": "essex bundle --webpack",
"assets": "ncp public build", "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": "essex lint --strict",
"lint:fix": "yarn lint --fix", "lint:fix": "yarn lint --fix",
"prettify": "essex prettify", "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": { "browserslist": {
"production": [ "production": [

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

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