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

build(tslint): remove unnecessary path, let tslint use tsconfig

This commit is contained in:
Marty Alcala
2018-03-10 17:41:44 -05:00
committed by Jason Dreyzehner
parent 1e2c5930f0
commit e406917ff8

View File

@@ -38,9 +38,9 @@
"build:module": "tsc -p tsconfig.module.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier 'src/**/*.ts' --write",
"fix:tslint": "tslint --fix --project . src/**/*.ts",
"fix:tslint": "tslint --fix --project .",
"test": "run-s build test:*",
"test:lint": "tslint --project . src/**/*.ts && prettier 'src/**/*.ts' --list-different",
"test:lint": "tslint --project . && prettier 'src/**/*.ts' --list-different",
"test:unit": "nyc --silent ava",
"test:nsp": "nsp check",
"watch": "run-s clean build:main && run-p 'build:main -- -w' 'test:unit -- --watch'",