Skip to content

Commit

Permalink
Add type checking for preview types to package scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskrycho committed Sep 1, 2022
1 parent de8a26e commit 1dc0e55
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@
"lint:docs": "qunit tests/docs/coverage-test.js",
"lint:eslint": "eslint --report-unused-disable-directives --cache .",
"lint:eslint:fix": "npm-run-all \"lint:eslint --fix\"",
"lint:tsc": "tsc --noEmit && tsc --noEmit --project types/preview",
"lint:tsc:stable": "tsc --noEmit",
"lint:tsc:preview": "tsc --noEmit --project type-tests/preview",
"lint:tsc:preview-array-ext": "tsc --noEmit --project type-tests/preview-prototype-extensions",
"lint:tsc": "npm-run-all lint:tsc:*",
"lint:fix": "npm-run-all lint:*:fix",
"test": "node bin/run-tests.js",
"test:blueprints:js": "mocha node-tests/blueprints/**/*-test.js",
Expand Down

0 comments on commit 1dc0e55

Please sign in to comment.