Remove tsc incremental flag

This commit is contained in:
morrigan 2020-04-23 12:49:57 +02:00
parent 5cd8a902fb
commit 6e38ba69b9

View File

@ -25,7 +25,7 @@
"build:web": "babel --no-babelrc --config-file ./babel.web.config.json src --copy-files -x .ts -d lib --source-maps",
"build:types": "tsc --declaration --outDir dist --emitDeclarationOnly",
"proto:gen": "pbjs -t static-module -o ./src/proto/payload.js ./src/proto/payload.proto && pbts -o ./src/proto/payload.d.ts ./src/proto/payload.js && yarn run lint --fix",
"check-types": "tsc --incremental --noEmit",
"check-types": "tsc --noEmit",
"lint": "eslint --ext .ts src/",
"pretest": "yarn check-types",
"test": "yarn run test:node && yarn run test:web",