tslint-webpack-plugin icon indicating copy to clipboard operation
tslint-webpack-plugin copied to clipboard

'Out' option not outputting a file

Open henry-chris opened this issue 6 years ago • 2 comments

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 }),

henry-chris avatar Aug 10 '18 07:08 henry-chris

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.

vanditamathur avatar Mar 13 '19 10:03 vanditamathur

I have same problem. My options are folowing

                new TSLintPlugin({
                    files: [
                        "./src/**/*.ts",
                        "./src/!**/.*.ts"
                    ],
                    warningsAsError: true,
                    format: 'json',
                    out: "../target/tslint.txt"
                })

RagazziMoscow avatar Dec 16 '19 15:12 RagazziMoscow