1
0
mirror of synced 2025-11-08 12:57:47 +00:00

test(lint): enable type checking in tslint

This commit is contained in:
Jason Dreyzehner
2017-06-27 17:58:44 -04:00
parent 43c8faf5f2
commit 69a2f17f1c

View File

@@ -19,7 +19,7 @@
"build:browser-cjs": "rollup -c config/exports/rollup.config.js -f cjs -o build/browser/index.cjs.js",
"build:resolve-sourcemaps": "sorcery -i build/browser/index.js && sorcery -i build/browser/index.cjs.js",
"build:tests": "trash test && node config/exports/build-tests.js",
"lint": "tslint src/**/*.ts",
"lint": "tslint --project . --type-check src/**/*.ts",
"unit": "yarn build && yarn build:tests && nyc ava",
"check-coverage": "nyc check-coverage --lines 100 --functions 100 --branches 100",
"test": "yarn lint && yarn unit && yarn check-coverage",