Update tsconfig with noemit: true
This commit is contained in:
Родитель
794052e49b
Коммит
0e6e128313
|
@ -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"],
|
||||||
|
|
Загрузка…
Ссылка в новой задаче