Skip to content
Permalink
d49b8673bb
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Robert Brignull address comments
Latest commit 5b0aafa Aug 12, 2020 History
0 contributors

Users who have contributed to this file

25 lines (24 sloc) 421 Bytes
const path = require('path');
module.exports = {
entry: './src/cli.ts',
module: {
rules: [
{
test: /\.ts$/,
use: 'ts-loader',
exclude: /node_modules/,
},
],
},
target: 'node',
resolve: {
extensions: [ '.ts', '.js' ],
},
output: {
filename: 'code-scanning-cli.js',
path: path.resolve(__dirname, 'cli'),
},
optimization: {
minimize: false
},
};