tslint-webpack-plugin
tslint-webpack-plugin copied to clipboard
'Out' option not outputting a file
Using these options, but I can't seem to use any options that give me an output file or files. It just keeps showing up in the terminal.
new TSLintPlugin({ files: ['./client/**/*.ts'], config: 'tslint.json', out: './AppSec.txt', force: true, typecheck: false }),
I am having the same problem. My options are: new TSLintPlugin({ files: ['./src/main/webapp/**/*.ts'], out: './target/tslintreport.txt', typeCheck: true, format: 'json' }) The output file is not getting generated. (The target directory exists) Also the format in the terminal does not show up as json.
I have same problem. My options are folowing
new TSLintPlugin({
files: [
"./src/**/*.ts",
"./src/!**/.*.ts"
],
warningsAsError: true,
format: 'json',
out: "../target/tslint.txt"
})