jrparish / tslint-webpack-plugin

TSLint plugin for Webpack
MIT License
20 stars 9 forks source link

'Out' option not outputting a file #14

Open henry-chris opened 6 years ago

henry-chris commented 6 years ago

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

vanditamathur commented 5 years ago

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.

RagazziMoscow commented 4 years ago

I have same problem. My options are folowing

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