I currently have tslint
and typescript
set up locally on my project. In order to run tslint
against the files, I am using the following command:
npx tslint -c tsconfig.json 'src/**/*.ts?(x)'
However, when I run this command, it seems to have no effect. The only thing that appears in the console is this:
"C:\Program Files\nodejs\\node.exe" "C:\Program Files\nodejs\\node_modules\npx\index.js" tslint -c tsconfig.json 'src/**/*.ts?(x)'
Has anyone encountered this issue before?
tslint: 5.7.0
node: 8.9.1
npm: 5.5.1
npx: 9.7.1
os: windows10